mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
fix(editor): Set default value for isProductionExecutionPreview in NodeDetaillsView.vue (no-changelog) (#9788)
This commit is contained in:
@@ -187,11 +187,16 @@ const emit = defineEmits([
|
|||||||
'stopExecution',
|
'stopExecution',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = withDefaults(
|
||||||
readOnly: boolean;
|
defineProps<{
|
||||||
renaming: boolean;
|
readOnly?: boolean;
|
||||||
isProductionExecutionPreview: boolean;
|
renaming?: boolean;
|
||||||
}>();
|
isProductionExecutionPreview?: boolean;
|
||||||
|
}>(),
|
||||||
|
{
|
||||||
|
isProductionExecutionPreview: false,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
const ndvStore = useNDVStore();
|
const ndvStore = useNDVStore();
|
||||||
const externalHooks = useExternalHooks();
|
const externalHooks = useExternalHooks();
|
||||||
|
|||||||
Reference in New Issue
Block a user