Skip to content

Commit d9aa6f3

Browse files
MAGETWO-71835: [Product grid] SC's values aren't sorted alphabetically in the tooltip
- Fix static
1 parent 60afc78 commit d9aa6f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Ui/view/base/web/js/grid/columns/expandable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ define([
6868
});
6969

7070
return labels.sort(
71-
function(a, b) {
71+
function (a, b) {
7272
return a.toLowerCase().localeCompare(b.toLowerCase());
7373
}
7474
);

0 commit comments

Comments
 (0)