Bugzilla – Attachment 151645 Details for
Bug 33823
KohaTable vue component action buttons spacing differ from kohaTable
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 33823: Add spacing to action labels
Bug-33823-Add-spacing-to-action-labels.patch (text/plain), 2.22 KB, created by
Pedro Amorim
on 2023-05-24 15:54:07 UTC
(
hide
)
Description:
Bug 33823: Add spacing to action labels
Filename:
MIME Type:
Creator:
Pedro Amorim
Created:
2023-05-24 15:54:07 UTC
Size:
2.22 KB
patch
obsolete
>From 102eed06fe9bb49da23fecd0345bbb15e28491fa Mon Sep 17 00:00:00 2001 >From: Pedro Amorim <pedro.amorim@ptfs-europe.com> >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( >- `<a class="${action_name} btn btn-default btn-xs" role="button"><i class="${action[action_name].icon}"></i>${action[action_name].text}</a>` >+ `<a class="${action_name} btn btn-default btn-xs" role="button"><i class="${action[action_name].icon}"></i> ${action[action_name].text}</a>` > ) > } else if (action == "edit") { > content.push( >- '<a class="edit btn btn-default btn-xs" role="button"><i class="fa fa-pencil"></i>' + >+ '<a class="edit btn btn-default btn-xs" role="button"><i class="fa fa-pencil"></i> ' + > this.$__("Edit") + > "</a>" > ) > } else if (action == "delete") { > content.push( >- '<a class="delete btn btn-default btn-xs" role="button"><i class="fa fa-trash"></i>' + >+ '<a class="delete btn btn-default btn-xs" role="button"><i class="fa fa-trash"></i> ' + > this.$__("Delete") + > "</a>" > ) >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 33823
:
151645
|
151671