From f473a2eb9d48f09a88da1e9210d54956899c1ba1 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 6 Jun 2023 15:16:17 +0200 Subject: [PATCH] Bug 30708: Add spacing for buttons Content-Type: text/plain; charset=utf-8 Sponsored-by: BULAC - http://www.bulac.fr/ Signed-off-by: BULAC - http://www.bulac.fr/ Signed-off-by: Heather Hernandez Signed-off-by: Laurence Rault Signed-off-by: Marcel de Rooy --- .../prog/js/vue/components/Preservation/TrainsShow.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Preservation/TrainsShow.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Preservation/TrainsShow.vue index 43bd0d00ba..c9bc2d009c 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Preservation/TrainsShow.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Preservation/TrainsShow.vue @@ -472,6 +472,7 @@ export default { class: "fa fa-pencil", "aria-hidden": "true", }), + " ", __("Edit"), ] ) @@ -490,13 +491,14 @@ export default { class: "fa fa-trash", "aria-hidden": "true", }), + " ", __("Remove"), ] ) - let buttons = [editButton, "", removeButton] + let buttons = [editButton, " ", removeButton] if (train.received_on !== null) { - buttons.push("") + buttons.push(" ") buttons.push( createVNode( "a", @@ -512,6 +514,7 @@ export default { class: "fa fa-copy", "aria-hidden": "true", }), + " ", __("Copy"), ] ) -- 2.30.2