From 102eed06fe9bb49da23fecd0345bbb15e28491fa Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Wed, 24 May 2023 15:53:43 +0000 Subject: [PATCH] Bug 33823: Add spacing to action labels --- .../intranet-tmpl/prog/js/vue/components/KohaTable.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue index 54b3043098..6637980251 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue @@ -89,17 +89,17 @@ export default { if (typeof action === "object") { let action_name = Object.keys(action)[0] content.push( - `${action[action_name].text}` + ` ${action[action_name].text}` ) } else if (action == "edit") { content.push( - '' + + ' ' + this.$__("Edit") + "" ) } else if (action == "delete") { content.push( - '' + + ' ' + this.$__("Delete") + "" ) -- 2.30.2