Bug 38353

Summary: DT - Possible hidden bugs caused by $.extend
Product: Koha Reporter: Jonathan Druart <jonathan.druart>
Component: Architecture, internals, and plumbingAssignee: Bugs List <koha-bugs>
Status: NEW --- QA Contact: Testopia <testopia>
Severity: normal    
Priority: P5 - low CC: lucas, nick, pedro.amorim
Version: unspecified   
Hardware: All   
OS: All   
See Also: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30397
Change sponsored?: --- Patch complexity: ---
Documentation contact: Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:

Description Jonathan Druart 2024-11-05 10:37:24 UTC
Possible bugs could be hidden behind the use of $.extend when we merge DT's options.

We are using (almost everywhere):
$(selector).dataTable($.extend(true, {}, dataTablesDefaults, {

But:

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);

[
  1,
  2,
  5,
  10,
  -1
]

See also bug 30397.