Smart-Table
Smart-Table copied to clipboard
aria-sort order is wrong
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