Skip to content

Commit 7530b93

Browse files
Resolved ESLnt warning
1 parent 586542b commit 7530b93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plots/plots.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3207,11 +3207,11 @@ function sortAxisCategoriesByValue(axList, gd) {
32073207
median: function(values) {return Lib.median(values);}
32083208
};
32093209

3210-
function sortAscending (a, b) {
3210+
function sortAscending(a, b) {
32113211
return a[1] - b[1];
32123212
}
32133213

3214-
function sortDescending (a, b) {
3214+
function sortDescending(a, b) {
32153215
return b[1] - a[1];
32163216
}
32173217

0 commit comments

Comments
 (0)