From 3e8df14f5c8f332c2baee2b7508a74938bd95014 Mon Sep 17 00:00:00 2001 From: Mia Winter Date: Tue, 27 Feb 2024 14:37:32 +0100 Subject: [PATCH] fixed Instant publish button showing up on non-draft articles --- 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 c7d0955..a8982bf 100644 --- a/Wave/Components/Pages/ArticleView.razor +++ b/Wave/Components/Pages/ArticleView.razor @@ -60,7 +60,7 @@ } - @if (Article.Status is ArticleStatus.InReview || context.User.IsInRole("Admin")) { + @if (Article.Status is ArticleStatus.InReview || (Article.Status is ArticleStatus.Draft && context.User.IsInRole("Admin"))) {