Table ordering does not work
g-adamante opened this issue · 3 comments
g-adamante commented
shzlw commented
Thanks for using Poli! I guess the issue is probably caused by the data type of table cell always being converted into string and there is no custom sort function added for each column. I will need to take a look.
shzlw commented
In the new patch v0.12.2, I only fixed the number ordering in table. For use cases like $120, because the column type is changed to string after the prefix is added, it will still be sorted in alphabetical order. Additional prefix/postfix configs will need to added later to 1. use the original column type number for sorting 2. render the prefix/postfix + value in display.
g-adamante commented
Cool!! Thanks for the fix.