Fix recupero IMG da API service

This commit is contained in:
Samuele Locatelli
2025-07-23 08:28:19 +02:00
parent 2ae6400530
commit 2b0ee5ffcb
9 changed files with 145 additions and 10 deletions
@@ -12,5 +12,6 @@ namespace WebWindowConfigurator.DTO
public string Description { get; set; } = "";
public string JwdFileName { get; set; } = "";
public string SVGFileName { get; set; } = "";
public string ImageUrl { get; set; } = "";
}
}
+1 -1
View File
@@ -76,7 +76,7 @@
colorClass = "";
<tr style="height: 150px;" class="@colorClass" @onclick="() => DoSelect(item)">
<td>@item.Index</td>
<td><img class="img-fluid" width="100" src="@item.SVGFileName" /></td>
<td><img class="img-fluid" width="100" src="@item.ImageUrl" /></td>
<td class="text-start">@item.Description</td>
</tr>
}