fix: make sorting of strings case insensitive

This commit is contained in:
Elias Schneider
2026-08-28 21:49:20 +02:00
parent 2abdf44320
commit 3657012f93
7 changed files with 84 additions and 17 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ import (
type API struct {
model.Base
Name string `sortable:"true"`
Audience string `sortable:"true"`
Name string `sortable:"case-insensitive"`
Audience string `sortable:"case-insensitive"`
UpdatedAt *datatype.DateTime
AllowCIMDClients bool `gorm:"column:allow_cimd_clients"`