Aggiunta tooltip su gerarchia

This commit is contained in:
Samuele Locatelli
2025-09-04 15:41:05 +02:00
parent 57129559af
commit 14b822be6e
3 changed files with 11 additions and 3 deletions
@@ -131,6 +131,7 @@ namespace Test.UI.Components.Pages
{
//item.ImageUrl = ICService.ImageUrl($"{apiUrl}/{imgBasePath}", false, item.SVGFileName);
}
await Task.Delay(1);
isLoading = false;
}
+3 -3
View File
@@ -98,14 +98,14 @@
@for (int j = 0; j < m_maxCol; j++)
{
@if (j + 1 == ItemTableList[i].Col)
{
{
<td>
<button class="btn btn-sm btn-secondary" style="font-size: 1rem;" @onclick="() => NextStepAndPreview(CompileStep.Frame)">@ItemTableList[i].Desc</button>
<button class="btn btn-sm btn-secondary" style="font-size: 1rem;" @onclick="() => NextStepAndPreview(CompileStep.Frame)" title="Vai a step @(CompileStep.Frame)">@ItemTableList[i].Desc</button>
</td>
}
else
{
<td></td>
<td>&nbsp;</td>
}
}
@@ -179,6 +179,13 @@