From 7508472d843e2adab436024daa6898996c9030c6 Mon Sep 17 00:00:00 2001 From: Claire Date: Tue, 26 Mar 2024 15:46:05 +0100 Subject: [PATCH] Fix admin interface repeating rule title instead of showing hint text (#29758) --- app/views/admin/rules/_rule.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/admin/rules/_rule.html.haml b/app/views/admin/rules/_rule.html.haml index a0896fe806..5f37f69354 100644 --- a/app/views/admin/rules/_rule.html.haml +++ b/app/views/admin/rules/_rule.html.haml @@ -5,7 +5,7 @@ .announcements-list__item__action-bar .announcements-list__item__meta - = rule.text + = rule.hint %div = table_link_to 'trash', t('admin.rules.delete'), admin_rule_path(rule), method: :delete, data: { confirm: t('admin.accounts.are_you_sure') } if can?(:destroy, rule)