diff --git a/crates/app/src/public/html/communities/questions.html b/crates/app/src/public/html/communities/questions.html
index 55bbe72..a26f0f6 100644
--- a/crates/app/src/public/html/communities/questions.html
+++ b/crates/app/src/public/html/communities/questions.html
@@ -20,7 +20,7 @@
{% for question in feed %}
- {{ components::global_question(question=question, can_manage_questions=can_manage_questions) }}
+ {{ components::global_question(question=question, can_manage_questions=can_manage_questions, show_community=false) }}
{% endfor %}
{{ components::pagination(page=page, items=feed|length) }}
diff --git a/crates/app/src/public/html/components.html b/crates/app/src/public/html/components.html
index 872fc19..f815249 100644
--- a/crates/app/src/public/html/components.html
+++ b/crates/app/src/public/html/components.html
@@ -699,10 +699,10 @@ is_global=false) -%}
}
{%- endmacro %} {% macro global_question(question, can_manage_questions=false,
-secondary=false) -%}
+secondary=false, show_community=true) -%}
{{ components::question(question=question[0], owner=question[1],
- show_community=false) }}
+ show_community=show_community) }}
Result