Skip to content

Commit

Permalink
Cleaned up pet grid
Browse files Browse the repository at this point in the history
  • Loading branch information
jake1164 committed Dec 31, 2024
1 parent 27cd273 commit 48b99ca
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions ShelterViewer.Shared/Pages/Pets.razor
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,10 @@

<MudDataGrid T="IItem" Items="ItemList" Filterable="true">
<Columns>
<PropertyColumn Property="x => x.id" Title="Id" />
<PropertyColumn Property="x => x.type" Title="Type" />
<PropertyColumn Property="x => x.hasBeenAssigned" Title="HasBeenAssigned" />
<PropertyColumn Property="x => x.hasRandonWeaponBeenAssigned" Title="HasRandomWeaponBeenAssigned" />
<PropertyColumn Property="x => (x is EquippedPet) ? true : false " Title="Equipped" />
<PropertyColumn Property="x => ((Pet)x).extraData!.uniqueName" title="Unique Name" />
<PropertyColumn Property="x => ((Pet)x).extraData!.bonus" title="Bonus" />
<PropertyColumn Property="x => ((Pet)x).extraData!.bonusValue" title="Bonus Value" />
<PropertyColumn Property="x => (x is EquippedPet) ? true : false " Title="Equipped" />
</Columns>
<PagerContent>
<MudDataGridPager T="IItem" />
Expand Down

0 comments on commit 48b99ca

Please sign in to comment.