mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: cjk input in calendar and row detail (#4726)
This commit is contained in:
@ -302,7 +302,11 @@ class _TitleSkin extends IEditableTextCellSkin {
|
||||
isDense: true,
|
||||
isCollapsed: true,
|
||||
),
|
||||
onChanged: (text) => bloc.add(TextCellEvent.updateText(text.trim())),
|
||||
onChanged: (text) {
|
||||
if (textEditingController.value.composing.isCollapsed) {
|
||||
bloc.add(TextCellEvent.updateText(text));
|
||||
}
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user