mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
fix(editor): Set default value for isProductionExecutionPreview
in NodeDetaillsView.vue
(no-changelog) (#9788)
This commit is contained in:
parent
876bcbb04c
commit
1e8716a607
|
@ -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();
|
||||||
|
|
Loading…
Reference in a new issue