We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81af904 commit 4d32d91Copy full SHA for 4d32d91
internal/persistence/kafkatopic/sortfilter.go
@@ -28,7 +28,7 @@ func init() {
28
}, "CONSUMER", "TEAM_SLUG", "ACCESS")
29
SortFilterTopicACL.RegisterSort("TEAM_SLUG", func(ctx context.Context, a, b *KafkaTopicACL) int {
30
return strings.Compare(a.TeamName, b.TeamName)
31
- })
+ }, "TOPIC_NAME", "CONSUMER", "ACCESS")
32
SortFilterTopicACL.RegisterSort("ACCESS", func(ctx context.Context, a, b *KafkaTopicACL) int {
33
return strings.Compare(a.Access, b.Access)
34
})
0 commit comments