We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0488200 commit 4fdc120Copy full SHA for 4fdc120
lib/model/autocomplete.dart
@@ -947,6 +947,7 @@ class TopicAutocompleteQuery extends AutocompleteQuery {
947
return store.realmEmptyTopicDisplayName.toLowerCase()
948
.contains(raw.toLowerCase());
949
}
950
+ // Skip this option if it matches the query exactly.
951
return topic.displayName != raw
952
// ignore: unnecessary_non_null_assertion // null topic names soon to be enabled
953
&& topic.displayName!.toLowerCase().contains(raw.toLowerCase());
0 commit comments