You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the aria-sort value is set to descending even when ascending sort is applied and vice-versa.
In file stSort.js on line number 90
.attr(ariaSort, newValue.reverse ? ariaSortAscending : ariaSortDescending);
should be changed to
.attr(ariaSort, newValue.reverse ? ariaSortDescending : ariaSortAscending );
since reverse indicated descending order, when reverse is true descending label should be shown
The text was updated successfully, but these errors were encountered:
the aria-sort value is set to descending even when ascending sort is applied and vice-versa.
In file stSort.js on line number 90
.attr(ariaSort, newValue.reverse ? ariaSortAscending : ariaSortDescending);
should be changed to
.attr(ariaSort, newValue.reverse ? ariaSortDescending : ariaSortAscending );
since reverse indicated descending order, when reverse is true descending label should be shown
The text was updated successfully, but these errors were encountered: