This commit is contained in:
2026-06-10 21:47:32 -04:00
parent 654ce3e9b0
commit d184980586
+3 -1
View File
@@ -42,8 +42,10 @@ else
private Web.Models.NoteDocument? doc;
private bool loading = true;
protected override async Task OnInitializedAsync()
protected override async Task OnParametersSetAsync()
{
loading = true;
doc = null;
doc = await DocsService.GetNoteAsync(Slug);
loading = false;
}