Bugzilla – Attachment 173129 Details for
Bug 38177
ERM - HoldingsIQ pagination does not work
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38177: Fix lengthMenu by removing extend
Bug-38177-Fix-lengthMenu-by-removing-extend.patch (text/plain), 2.41 KB, created by
Pedro Amorim
on 2024-10-22 11:46:33 UTC
(
hide
)
Description:
Bug 38177: Fix lengthMenu by removing extend
Filename:
MIME Type:
Creator:
Pedro Amorim
Created:
2024-10-22 11:46:33 UTC
Size:
2.41 KB
patch
obsolete
>From a2211ccc1fa1e1a83164d43a3b7b612f3abba4f8 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 22 Oct 2024 10:52:46 +0200 >Subject: [PATCH] Bug 38177: Fix lengthMenu by removing extend >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >$.extend is doing a deep copy of the objects. > >``` >var dataTablesDefaults = { "lengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, __('All')]] }; >var mine = {lengthMenu: [[1, 2, 5, 10], [1, 2, 5, 10]]}; >$.extend(true, {}, dataTablesDefaults, mine); >``` >Returns: >``` >[ > 1, > 2, > 5, > 10, > -1 >] >``` >Which is ugly and not what we want. > >We only need to merge the first level. Using the spread operator (...) will do the trick here. > >Note that we certainly want to adjust all the other occurrences of >extend for DT's options. > >Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com> >--- > .../ERM/EHoldingsEBSCOTitlePackagesList.vue | 11 ++++++----- > 1 file changed, 6 insertions(+), 5 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOTitlePackagesList.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOTitlePackagesList.vue >index 182a8274ed..752a528610 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOTitlePackagesList.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOTitlePackagesList.vue >@@ -89,13 +89,14 @@ export default { > $.fn.dataTable.ext.search = $.fn.dataTable.ext.search.filter( > search => search.name != "apply_filter" > ) >- $("#" + table_id).dataTable( >- $.extend(true, {}, dataTablesDefaults, { >+ $("#" + table_id).dataTable({ >+ ...dataTablesDefaults, >+ ...{ > data: resources, > embed: ["package.name"], > ordering: false, > dom: '<"top pager"<"table_entries"ilp>>tr<"bottom pager"ip>', >- aLengthMenu: [ >+ lengthMenu: [ > [10, 20, 50, 100], > [10, 20, 50, 100], > ], >@@ -177,8 +178,8 @@ export default { > ) > }) > }, >- }) >- ) >+ }, >+ }) > }, > }, > mounted() { >-- >2.39.5
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 38177
:
172782
|
172783
|
172803
|
172806
|
173068
|
173119
|
173121
|
173127
|
173128
|
173129
|
173190
|
173191
|
173192