microsoft / fluentui-blazor

Microsoft Fluent UI Blazor components library. For use with ASP.NET Core Blazor applications
https://www.fluentui-blazor.net
MIT License
3.23k stars 294 forks source link

FluentNavLink - When Href is specified the Disabled link color is not applied #1992

Closed coderdnewbie closed 2 weeks ago

coderdnewbie commented 2 weeks ago

When using this, the disabled color is applied correctly:

<FluentNavLink Icon="@(new Icons.Regular.Size24.CalendarAgenda())" Disabled="true" Tooltip="Item 4 tooltip1">Item 4 Disabled</FluentNavLink>

However when using this, the disabled color is not applied:

<FluentNavLink Icon="@(new Icons.Regular.Size24.CalendarAgenda())" Disabled="true" Href="https://microsoft.com" Tooltip="Item 4 tooltip1">Item 4 Disabled</FluentNavLink>

The only difference is the second one has Href="https://microsoft.com"

Please can the disabled color also be applied for the second scenario

vnbaaij commented 2 weeks ago

Fixed in next release:

image

coderdnewbie commented 1 week ago

I have tested in release 4.7.2. and it is still happening. I will wait for 4.7.3. If it is in 4.7.2, please let me know.

vnbaaij commented 1 week ago

Make sure to do a hard refresh as this is primarily a CSS change. Just checked it on the demo site and it looks on, I believe.

coderdnewbie commented 1 week ago

Correction. It did work, I am sorry for the error, but for the last hour it did not work, then I rebooted and built it again and it worked as expected. Sorry for the mistake, I am not sure what is going on with my Visual Studio. Thanks for fixing this issue.