When sorting a column with these values and sort-order set to desc, it will display the numbers in the following order: [9812, 945, 9, 10000]
This is likely because all sortables are passed as type: string. Expected behavior is to return numerically sorted values:
[10000, 9812, 945, 9]
Given the dataset:
[ 9, 9812, 945, 10000]
sort-order
set todesc
, it will display the numbers in the following order:[9812, 945, 9, 10000]
This is likely because all sortables are passed as type: string. Expected behavior is to return numerically sorted values:[10000, 9812, 945, 9]