refactor: remplace l’invocation du composant Sidebar par un composant de vue

This commit is contained in:
mirage
2026-03-26 13:34:19 +01:00
parent 999d9893af
commit 2ca5cbf8a5
5 changed files with 71 additions and 64 deletions

View File

@@ -31,7 +31,7 @@
[HttpGet("/artiste/{nom}")]
public IActionResult Index(string nom)
{
this.logger.LogInformation("Tentative d'accès à l'artiste avec le nom : {NomArtiste}", nom);
this._logger.LogInformation("Tentative d'accès à l'artiste avec le nom : {NomArtiste}", nom);
if (string.IsNullOrEmpty(nom))
{