From d478f94427fa8042cd46809d25480d7250483ad8 Mon Sep 17 00:00:00 2001 From: Gajendra Nishad Date: Sat, 14 Feb 2026 17:15:01 +0530 Subject: [PATCH 1/2] chore: simplify feedback widget to bad/good reactions --- wiki/templates/wiki/includes/feedback_widget.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/wiki/templates/wiki/includes/feedback_widget.html b/wiki/templates/wiki/includes/feedback_widget.html index 2c24d7c2..e349ed0b 100644 --- a/wiki/templates/wiki/includes/feedback_widget.html +++ b/wiki/templates/wiki/includes/feedback_widget.html @@ -5,9 +5,8 @@ {% set reactions = [ - {"type": "Good", "mouth": ''}, - {"type": "Ok", "mouth": ''}, - {"type": "Bad", "mouth": ''} + {"type": "Bad", "mouth": ''}, + {"type": "Good", "mouth": ''} ] %}
{% for reaction in reactions %} From 10ad749755f87cf5993f362afd5c015df20d53e0 Mon Sep 17 00:00:00 2001 From: Gajendra Nishad Date: Tue, 17 Feb 2026 10:05:13 +0530 Subject: [PATCH 2/2] chore: replace face icons with thumbs up/down in feedback widget --- .../wiki/includes/feedback_widget.html | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/wiki/templates/wiki/includes/feedback_widget.html b/wiki/templates/wiki/includes/feedback_widget.html index e349ed0b..34bf5751 100644 --- a/wiki/templates/wiki/includes/feedback_widget.html +++ b/wiki/templates/wiki/includes/feedback_widget.html @@ -5,10 +5,10 @@ {% set reactions = [ - {"type": "Bad", "mouth": ''}, - {"type": "Good", "mouth": ''} + {"type": "Bad", "icon": '', "transform": "translate(0, 2)", "viewBox": "0 1 24 24"}, + {"type": "Good", "icon": '', "transform": "translate(0, -2)", "viewBox": "0 -1 24 24"} ] %} -
+
{% for reaction in reactions %} + {% if not loop.last %} +
+ {% endif %} {% endfor %}