Skip to content

Commit

Permalink
Remove erroneous adornments
Browse files Browse the repository at this point in the history
  • Loading branch information
codemonkey85 committed Oct 31, 2024
1 parent c1f6d2c commit 4a446ff
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions Pkmds.Web/Components/MainTabPages/TrainerInfoTab.razor
Original file line number Diff line number Diff line change
Expand Up @@ -73,26 +73,20 @@ EntityContext.MaxInvalid)
<MudNumericField Label="Hours"
T="@int"
Variant="@Variant.Outlined"
Adornment="@Adornment.Start"
AdornmentIcon="@Constants.PokeDollarSvg"
Min="0"
@bind-Value="@saveFile.PlayedHours"
For="@(() => saveFile.PlayedHours)" />

<MudNumericField Label="Minutes"
T="@int"
Variant="@Variant.Outlined"
Adornment="@Adornment.Start"
AdornmentIcon="@Constants.PokeDollarSvg"
Min="0"
@bind-Value="@saveFile.PlayedMinutes"
For="@(() => saveFile.PlayedMinutes)" />

<MudNumericField Label="Seconds"
T="@int"
Variant="@Variant.Outlined"
Adornment="@Adornment.Start"
AdornmentIcon="@Constants.PokeDollarSvg"
Min="0"
@bind-Value="@saveFile.PlayedSeconds"
For="@(() => saveFile.PlayedSeconds)" />
Expand Down

0 comments on commit 4a446ff

Please sign in to comment.