fix(cursor): trim parentheses from sort column names

This commit is contained in:
Hein
2026-03-27 15:07:10 +02:00
parent 1641eaf278
commit aa362c77da
3 changed files with 3 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ func getCursorFilter(
reverse := direction < 0
for _, s := range sortItems {
col := strings.TrimSpace(s.Column)
col := strings.Trim(strings.TrimSpace(s.Column), "()")
if col == "" {
continue
}