You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version - 6.0.0
Render Mode - Static
Interactivity - Server
Database - SQL Server
Describe the enhancement
The current implementation of the tab strip panel includes an if-else statement that determines how the heading is set. This can be simplified to improve readability and maintainability.
Oqtane Info
Version - 6.0.0
Render Mode - Static
Interactivity - Server
Database - SQL Server
Describe the enhancement
The current implementation of the tab strip panel includes an if-else statement that determines how the heading is set. This can be simplified to improve readability and maintainability.
Current Implementation:
Proposed Change
Heading = string.IsNullOrEmpty(Heading) ? Localize(nameof(Name), Name) : Localize(nameof(Heading), Heading);
Benefits:
public string DisplayHeading()
method.The text was updated successfully, but these errors were encountered: