Sort doesn't work correctly
scottsb opened this issue · 1 comments
scottsb commented
Sort is currently treating all values as text strings rather than sorting appropriately to the data type of the column. For example consider these current sort orders on the Queries tab:
Grade:
- bad
- good
- medium
should be:
- bad
- medium
- good
Time (ms):
- 1.04
- 11.69
- 2.11
should be:
- 1.04
- 2.11
- 11.69
phoenix128 commented
Seems it is a "natural" sorting issue.
Thank you for reporting this, we will fix it ASAP.