fix: provide default options for inline actions always (#3601)

This commit is contained in:
Mathias Mogensen 2023-10-03 18:07:46 +02:00 committed by GitHub
parent 15aaacc4b7
commit d054439df4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -66,6 +66,7 @@ class DateReferenceService {
.toList();
if (options.isEmpty && _keywords.any((k) => search.startsWith(k))) {
_setOptions();
options = _allOptions;
}
}

View File

@ -82,6 +82,7 @@ class ReminderReferenceService {
.toList();
if (options.isEmpty && _keywords.any((k) => search.startsWith(k))) {
_setOptions();
options = _allOptions;
}
}