Skip to content

Commit

Permalink
460081b587e82374ae2c1785d97a56667ca18499 Fix: Date render helpers wrt…
Browse files Browse the repository at this point in the history
…. setting locales in Luxon

fixes #301

Sync to source repo @460081b587e82374ae2c1785d97a56667ca18499
  • Loading branch information
dtbuild committed Oct 31, 2024
1 parent eb864a9 commit 2f4053c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion datatables.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
],
"src-repo": "http://github.com/DataTables/DataTablesSrc",
"last-tag": "2.1.8",
"last-sync": "824b6febdbf26e7e60c08ef6c702f4226b6b85a4"
"last-sync": "460081b587e82374ae2c1785d97a56667ca18499"
}
2 changes: 1 addition & 1 deletion js/dataTables.js
Original file line number Diff line number Diff line change
Expand Up @@ -12170,7 +12170,7 @@
return null;
}

dt.setLocale(locale);
dt = dt.setLocale(locale);
}
else if (! format) {
// No format given, must be ISO
Expand Down
2 changes: 1 addition & 1 deletion js/dataTables.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/dataTables.min.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/dataTables.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12117,7 +12117,7 @@ function __mldObj (d, format, locale) {
return null;
}

dt.setLocale(locale);
dt = dt.setLocale(locale);
}
else if (! format) {
// No format given, must be ISO
Expand Down

0 comments on commit 2f4053c

Please sign in to comment.