We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48e1659 commit adcef3fCopy full SHA for adcef3f
apps/array/src/renderer/features/message-editor/tiptap/useTiptapEditor.ts
@@ -104,7 +104,10 @@ export function useTiptapEditor(options: UseTiptapEditorOptions) {
104
return true;
105
}
106
107
- if (taskId && (event.key === "ArrowUp" || event.key === "ArrowDown")) {
+ if (
108
+ taskId &&
109
+ (event.key === "ArrowUp" || event.key === "ArrowDown")
110
+ ) {
111
const currentText = view.state.doc.textContent;
112
const isEmpty = !currentText.trim();
113
const { from } = view.state.selection;
0 commit comments