From 37bf000ce4a8001719654c38d6938b2521897989 Mon Sep 17 00:00:00 2001
From: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Date: Fri, 27 Sep 2019 13:13:05 +0100
Subject: [PATCH] Bug 23602: (follow-up) Improve tooltip formatting

This follow-up changes the formatting of the tooltip to add a newline for
library limit.

To test, apply the patch and go to Administration -> Item types.

In the table of item types, find one with library limitations. Hovering
over the "# library limitations" test should trigger a Bootstrap-styled
tooltip showing the library name and code, one per line.

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
---
 koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt
index a1b4f1ff8b..666701f312 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt
@@ -416,7 +416,11 @@ Item types administration
                 [% IF itemtype.branches.size > 0 %]
                     [% branches_str = "" %]
                     [% FOREACH branch IN itemtype.branches %]
-                        [% branches_str = branches_str _ " " _ branch.branchname _ " (" _ branch.branchcode _ ")" %]
+                        [%- IF loop.first -%]
+                        [% branches_str = branch.branchname _ " (" _ branch.branchcode _ ")" %]
+                        [% ELSE %]
+                        [% branches_str = branches_str _ "\n" _ branch.branchname _ " (" _ branch.branchcode _ ")" %]
+                        [% END %]
                     [% END %]
                     <span class="library_limitation" title="[% branches_str | html %]">
                         [% IF itemtype.branches.size > 1 %]
-- 
2.20.1