diff --git a/apps/builder/app/builder/shared/binding-popover.tsx b/apps/builder/app/builder/shared/binding-popover.tsx index 43c8be5fc61f..8bc912b42b47 100644 --- a/apps/builder/app/builder/shared/binding-popover.tsx +++ b/apps/builder/app/builder/shared/binding-popover.tsx @@ -367,7 +367,7 @@ export const BindingPopover = ({ const valueError = validate?.(evaluateExpressionWithinScope(value, scope)); return ( { // handle special case for popover close diff --git a/apps/builder/app/builder/shared/commands.ts b/apps/builder/app/builder/shared/commands.ts index 85521775bdb5..66d6369ad309 100644 --- a/apps/builder/app/builder/shared/commands.ts +++ b/apps/builder/app/builder/shared/commands.ts @@ -299,6 +299,8 @@ export const { emitCommand, subscribeCommands } = createCommandsEmitter({ handler: () => { $publishDialog.set("publish"); }, + disableHotkeyOnFormTags: true, + disableHotkeyOnContentEditable: true, }, { name: "openExportDialog", @@ -306,6 +308,8 @@ export const { emitCommand, subscribeCommands } = createCommandsEmitter({ handler: () => { $publishDialog.set("export"); }, + disableHotkeyOnFormTags: true, + disableHotkeyOnContentEditable: true, }, { name: "toggleComponentsPanel",