fix(client): Use number sorting for number columns in Table view (#7094)

This commit is contained in:
Elian Doran 2025-09-25 21:28:04 +03:00 committed by GitHub
commit 82df26031f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,7 +30,8 @@ const labelTypeMappings: Record<ColumnType, Partial<ColumnDefinition>> = {
editor: "datetime"
},
number: {
editor: "number"
editor: "number",
sorter: "number"
},
time: {
editor: "input"