fix: suggestions menu and use empty map in html messages null return
This commit is contained in:
parent
5e9163f9b5
commit
734470ecf6
2 changed files with 5 additions and 5 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue