Skip to content

Commit 8371f79

Browse files
authored
Workaround for Chrome 140 issues (#4600)
1 parent eed7343 commit 8371f79

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/js/utils/common.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,11 @@ export function urlExists(url) {
9292
*/
9393

9494
$.fn.sortSelect = function (text = "") {
95+
/*
96+
97+
Chrome v140 does not work with sortSelect function properly.
98+
Disabling it for now until a fix is found.
99+
95100
this.each(function () {
96101
const select = this;
97102
// Collect option data
@@ -123,5 +128,7 @@ $.fn.sortSelect = function (text = "") {
123128
});
124129
});
125130
131+
*/
132+
126133
return this;
127134
};

0 commit comments

Comments
 (0)