diff --git a/packages/editor-ui/src/components/NodeDetailsView.vue b/packages/editor-ui/src/components/NodeDetailsView.vue index 41e6c364b4..1517e05d93 100644 --- a/packages/editor-ui/src/components/NodeDetailsView.vue +++ b/packages/editor-ui/src/components/NodeDetailsView.vue @@ -187,11 +187,16 @@ const emit = defineEmits([ 'stopExecution', ]); -const props = defineProps<{ - readOnly: boolean; - renaming: boolean; - isProductionExecutionPreview: boolean; -}>(); +const props = withDefaults( + defineProps<{ + readOnly?: boolean; + renaming?: boolean; + isProductionExecutionPreview?: boolean; + }>(), + { + isProductionExecutionPreview: false, + }, +); const ndvStore = useNDVStore(); const externalHooks = useExternalHooks();