@@ -, +, @@ --- .../intranet-tmpl/prog/js/vue/components/KohaTable.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue +++ a/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") + "" ) --