diff --git a/Components/Pages/Inspect.razor b/Components/Pages/Inspect.razor index 9cb766d..54dce52 100644 --- a/Components/Pages/Inspect.razor +++ b/Components/Pages/Inspect.razor @@ -11,13 +11,13 @@
@if (Model is null) { +

URL not found

The given ID does not exist, it may have expired or been deleted.

- } else {

Inspect

@@ -68,10 +68,12 @@ } await Db.RemoveAsync(Id); - + Type = MessageComponent.AlertType.Success; Message = $"Id '{Id}' successfully deleted."; - return; + + Id = null; + Model = null; } }