Make edit button in game list a link to allow opening in new tab

This commit is contained in:
Pat Hartl 2023-08-01 18:52:25 -05:00
parent 4bbeb3d891
commit c028b4d5d9

View file

@ -30,7 +30,7 @@
<Button OnClick="() => ViewSaves(context)">Saves</Button> <Button OnClick="() => ViewSaves(context)">Saves</Button>
</SpaceItem> </SpaceItem>
<SpaceItem> <SpaceItem>
<Button OnClick="() => Edit(context)">Edit</Button> <a href="/Games/@(context.Id)/Edit" class="ant-btn ant-btn-primary">Edit</a>
</SpaceItem> </SpaceItem>
<SpaceItem> <SpaceItem>
<Popconfirm OnConfirm="() => Delete(context)" Title="Are you sure you want to delete this game?"> <Popconfirm OnConfirm="() => Delete(context)" Title="Are you sure you want to delete this game?">