fix: use contains instead of contentEqual for managed configurations search

This commit is contained in:
Tam Nguyen
2025-11-26 08:42:47 +11:00
parent c8c428e929
commit a716c4bf2d

View File

@@ -1024,7 +1024,7 @@ fun ManagedConfigurationScreen(
restrictions restrictions
} else { } else {
restrictions.filter { restrictions.filter {
it.key.contentEquals(searchKeyword, true) || it.key.contains(searchKeyword, true) ||
it.title?.contains(searchKeyword, true) ?: true it.title?.contains(searchKeyword, true) ?: true
} }
} }