Skip to content

Commit

Permalink
Refactor the code
Browse files Browse the repository at this point in the history
  • Loading branch information
yato-sketch committed Aug 22, 2024
1 parent eab9e6c commit ab3f1f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BlazorAdmin/Pages/CatalogItemPage/Create.razor
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
}
<div class="col-md-@(HasPicture?"6":"12")">
<div class="form-group">
<label class="control-label col-md-6">User Name</label>
<label class="control-label col-md-6">Name</label>
<div class="col-md-12">
<InputText class="form-control" @bind-Value="_item.Name" />
<ValidationMessage For="(() => _item.Name)" />
Expand Down Expand Up @@ -62,7 +62,7 @@
</div>

<div class="form-group">
<label class="control-label col-md-6">Kind</label>
<label class="control-label col-md-6">Type</label>
<div class="col-md-12">
<InputSelect @bind-Value="_item.CatalogTypeId" class="form-control">
@foreach (var type in Types)
Expand Down

0 comments on commit ab3f1f4

Please sign in to comment.