From 0f98489527dcfbe7cedd2a43ccd47b70b0838e1b Mon Sep 17 00:00:00 2001 From: Mark Haslinghuis Date: Wed, 10 Sep 2025 11:32:08 +0200 Subject: [PATCH] Workaround for Chrome 140 issues --- src/js/utils/common.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/js/utils/common.js b/src/js/utils/common.js index 3663fe6256..7f1918ece4 100644 --- a/src/js/utils/common.js +++ b/src/js/utils/common.js @@ -92,6 +92,11 @@ export function urlExists(url) { */ $.fn.sortSelect = function (text = "") { + /* + + Chrome v140 does not work with sortSelect function properly. + Disabling it for now until a fix is found. + this.each(function () { const select = this; // Collect option data @@ -123,5 +128,7 @@ $.fn.sortSelect = function (text = "") { }); }); + */ + return this; };