-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
enhancementNew feature or requestNew feature or request
Description
To improve the reading of Razor pages, it is clearer to align with a line break the attributes of components or HTML tags
❌ :
<MudTextField T="string" MaxLength="200" @bind-Value="demoAccount.Email" InputType="InputType.Email" Label="Email" Margin="Margin.Dense" autocomplete="off" />
✅
<MudTextField T="string"
MaxLength="200"
@bind-Value="demoAccount.Email"
InputType="InputType.Email"
Label="Email"
Margin="Margin.Dense"
autocomplete="off" />
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request