From 585138f13f42ec76a7d45b44faba70445b27d7b3 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 31 Jul 2023 13:23:53 +0200 Subject: [PATCH] Bug 34447: Do not export "Actions" columns In the KohaTable Vue component we should add the noExport class to the actions columns to not export them. Test plan: Go to the ERM module, create at least one agreement. Go to the agreement list view and click "export" to export the table => Without this patch the "Actions" column was exported => With this patch is no longer there Sponsored-by: BULAC - http://www.bulac.fr/ Signed-off-by: Sam Lau Signed-off-by: Pedro Amorim Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue | 1 + 1 file changed, 1 insertion(+) 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 59376f00af..5dcf6aca5f 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue @@ -81,6 +81,7 @@ export default { ...this.tableColumns, { name: "actions", + className: "noExport", title: this.$__("Actions"), searchable: false, render: (data, type, row) => { -- 2.20.1