From 75090fce50042780d8990ba24c3de3e6693ff31b Mon Sep 17 00:00:00 2001 From: Eric Garcia Date: Wed, 28 Aug 2024 16:14:44 +0000 Subject: [PATCH] Bug 37761: Fixed styling of Tabs on curbside_pickups.tt page To test: - Enable the CurbsidePickup system preference if necessary. - Properly testing requires testing data. You can run this command to REPLACE your curbside pickup data with sample data: bash <(curl -s https://gitlab.com/-/snippets/2572579/raw/main/test_curbside_pickups.sh) - Go to Circulation -> Curbside pickups. - Look at the tabs above each table, no style. (To be staged, Staged & ready, etc ) Apply patch and notice each tab has the correct style. --- .../prog/en/modules/circ/curbside_pickups.tt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/curbside_pickups.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/curbside_pickups.tt index 011b5b6a22..0da5dd787b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/curbside_pickups.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/curbside_pickups.tt @@ -155,35 +155,35 @@ [% ELSE %]
  • [% END %] - To be staged ([% to_be_staged.count | html %]) + To be staged ([% to_be_staged.count | html %])
  • [% IF tab == 'staged-and-ready' %]
  • [% END %] - Staged & ready ([% staged_and_ready.count | html %]) + Staged & ready ([% staged_and_ready.count | html %])
  • [% IF tab == 'patron-is-outside' %]
  • [% END %] - Patron is outside ([% patron_outside.count | html %]) + Patron is outside ([% patron_outside.count | html %])
  • [% IF tab == 'delivered-today' %]
  • [% END %] - Delivered today ([% delivered_today.count | html %]) + Delivered today ([% delivered_today.count | html %])
  • [% IF tab == 'schedule-pickup' %]
  • [% END %] - Schedule pickup + Schedule pickup
  • -- 2.30.2