Skip to content

Commit 670b065

Browse files
Set MudBlazor tooltip duration to zero to resolve issue with tooltips (#385)
1 parent f97612d commit 670b065

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

app/MindWork AI Studio/Layout/MainLayout.razor.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@ protected override async Task OnInitializedAsync()
117117
if(this.SettingsManager.ConfigurationData.App.NavigationBehavior is NavBehavior.ALWAYS_EXPAND)
118118
this.navBarOpen = true;
119119

120+
// Solve issue https://github.com/MudBlazor/MudBlazor/issues/11133:
121+
MudGlobal.TooltipDefaults.Duration = TimeSpan.Zero;
122+
120123
await this.themeProvider.WatchSystemPreference(this.SystemeThemeChanged);
121124
await this.UpdateThemeConfiguration();
122125
this.LoadNavItems();

0 commit comments

Comments
 (0)