mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +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',
|
||||
]);
|
||||
|
||||
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();
|
||||
|
||||
Reference in New Issue
Block a user