From d77516cb8ad9943e3c82f40042e0d9d7890da606 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 29 Aug 2024 15:56:29 +0000 Subject: [PATCH] Bug 37733: Fix header menu style for preservation link This patch adds the missing "dropdown-item" class to the link in the header menu for the preservation module. To test, apply the patch and enable the preservation module (PreservationModule). Reload the page and click "More" in the header menu. The "Preservation" link should be styled like all the others. Signed-off-by: Jonathan Druart --- koha-tmpl/intranet-tmpl/prog/en/includes/header.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc index 04d4ce269c9..66b8467b8e6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc @@ -56,7 +56,7 @@
  • Course reserves
  • [% END %] [% IF Koha.Preference('PreservationModule') && CAN_user_preservation %] -
  • Preservation
  • +
  • Preservation
  • [% END %] [% IF ( CAN_user_reports ) %]
  • Reports
  • -- 2.34.1