From 43239467db046eea5eb5268f91d1b63a1042238d Mon Sep 17 00:00:00 2001 From: Dale Wahl Date: Thu, 11 Jul 2024 12:08:08 +0200 Subject: [PATCH] fix processor more button would only show top level analysis if not logged in --- webtool/templates/components/result-child.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtool/templates/components/result-child.html b/webtool/templates/components/result-child.html index 5d4ff2bef..4b0b16588 100644 --- a/webtool/templates/components/result-child.html +++ b/webtool/templates/components/result-child.html @@ -143,7 +143,7 @@

{{ processors[item.type].title if not deprecated else "(Deprecated analysis) {# 'More' button to show further analysis and preview #}
- {% if current_user.is_authenticated and item.is_finished() and (item.children or (item.num_rows > 0 and item.get_available_processors(exclude_hidden=True))) %} + {% if item.is_finished() and (item.children or (item.num_rows > 0 and current_user.is_authenticated and item.get_available_processors(exclude_hidden=True))) %}