From 885a0c5a0e711299561b8fb94f5245f5d1e794b9 Mon Sep 17 00:00:00 2001 From: Mia Winter Date: Thu, 18 Jan 2024 22:00:40 +0100 Subject: [PATCH] fixed typo in documentation --- Wave/Components/Pages/ArticleView.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wave/Components/Pages/ArticleView.razor b/Wave/Components/Pages/ArticleView.razor index 02e87f5..583fd05 100644 --- a/Wave/Components/Pages/ArticleView.razor +++ b/Wave/Components/Pages/ArticleView.razor @@ -53,7 +53,7 @@ return Article; } - // You cannot access your own drafts + // You can only access your own drafts if (Article.Status is ArticleStatus.Draft) { if (Article.Author.Id == principal.FindFirst("Id")!.Value) { return Article;