Skip to content

Commit 73157f0

Browse files
committed
no control a override when in input etc..
1 parent f1617a1 commit 73157f0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

libs/app-canvas/src/app/app.element.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,9 @@ export class AppElement<T extends BaseNodeInfo> {
481481
event.key === 'insert' ||
482482
((event.ctrlKey || event.metaKey || this.metaKeyDown) && key === 'a')
483483
) {
484+
if (inInputControle) {
485+
return;
486+
}
484487
this.removeFormElement();
485488
const selectedNodeInfo = getSelectedNode();
486489
executeCommand(

0 commit comments

Comments
 (0)