From 26b24af413c8a0e052b74b11de2b0f5c0c6b5d19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Fri, 8 Nov 2024 12:55:48 +0100 Subject: [PATCH] Remove unused HTML class in hide recommendation button Since the element uses `position: absolute`, the `float: right` property set by this utility class is ignored. --- app/views/shared/_recommended_index.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/shared/_recommended_index.html.erb b/app/views/shared/_recommended_index.html.erb index bf7bf13eb..eb3783d58 100644 --- a/app/views/shared/_recommended_index.html.erb +++ b/app/views/shared/_recommended_index.html.erb @@ -6,7 +6,7 @@
<%= button_to disable_recommendations_path, title: t("shared.recommended_index.hide"), - class: "float-right-medium hide-recommendations", + class: "hide-recommendations", data: { toggle: "recommendations", confirm: t("#{namespace}.index.recommendations.disable")