From adcd6291691ec723f5495659ba565d97954d86a4 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Fri, 25 Aug 2023 10:28:58 +0000 Subject: [PATCH] Bug 34465: Make KohaTable.vue actions column not sortable Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 60cf53cf798b16138b53d6012f083caee06941f3) Signed-off-by: Fridolin Somers (cherry picked from commit 3fa6983a5380cf3703def68989f6f81019e315ae) Signed-off-by: Matt Blenkinsop --- 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 5dcf6aca5f..a5af9e7450 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue @@ -84,6 +84,7 @@ export default { className: "noExport", title: this.$__("Actions"), searchable: false, + sortable: false, render: (data, type, row) => { let content = [] this.actions["-1"].forEach(action => { -- 2.39.2