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