fix(flutter_desktop): add forgotten call to update text cell (#6668)

This commit is contained in:
Richard Shiue 2024-10-30 14:31:10 +03:00 committed by GitHub
parent 74165ace0f
commit fbe87cc536
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -83,6 +83,7 @@ class _TextCellState extends State<TextCardCell> {
if (!focusNode.hasFocus) {
widget.editableNotifier?.isCellEditing.value = false;
cellBloc.add(const TextCellEvent.enableEdit(false));
cellBloc.add(TextCellEvent.updateText(_textEditingController.text));
}
}