fix: suggestions menu and use empty map in html messages null return

This commit is contained in:
Jayesh Nirve 2022-02-02 13:07:33 +05:30
commit 734470ecf6
2 changed files with 5 additions and 5 deletions

View file

@ -49,7 +49,7 @@ class InputBar extends StatelessWidget {
}
final searchText =
controller!.text.substring(0, controller!.selection.baseOffset);
final List<Map<String, String?>> ret = <Map<String, String>>[];
final List<Map<String, String?>> ret = <Map<String, String?>>[];
const maxResults = 30;
final commandMatch = RegExp(r'^\/([\w]*)$').firstMatch(searchText);