mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -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',
|
||||
]);
|
||||
|
||||
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();
|
||||
|
|
Loading…
Reference in a new issue