Added account management sites

This commit is contained in:
t.ruspekhofer 2022-02-27 00:31:04 +01:00
parent c8252daf88
commit 7113e3abee
10 changed files with 332 additions and 64 deletions

View file

@ -150,7 +150,7 @@
async Task DeleteRaidClicked()
{
bool confirmed = await JsRuntime.InvokeAsync<bool>("confirm", "Are you sure?");
bool confirmed = await JsRuntime.InvokeAsync<bool>("confirm", "Are you sure you want to delete the raid?");
if (confirmed)
{
await RaidService.DeleteRaid(_raid.RaidId);
@ -171,5 +171,6 @@
}
await RaidService.AddOrEditRaid(_raid);
NavigationManager.NavigateTo("raidoverview");
}
}