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 buggy function appears to be present on all table pages, but not all have a column with negative percentage values.
Cause
The percSorter function is incorrectly parsing negative percentages. The culprit is the replace("-", "0.0"), which is mangling negative percentages. For example, "-10.1%" will be incorrectly converted to "0.010.1", which parseFloat evaluates as 0.01.