mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix: fix merge issue
This commit is contained in:
parent
06c7db34b3
commit
a3d0030104
|
@ -97,7 +97,7 @@ export default defineComponent({
|
|||
default: (): IMenuItem[] => [],
|
||||
},
|
||||
modelValue: {
|
||||
type: String,
|
||||
type: [String, Boolean],
|
||||
default: '',
|
||||
},
|
||||
},
|
||||
|
|
|
@ -7,7 +7,7 @@ import type { SourceControlStatus } from '@/Interface';
|
|||
import { useI18n, useLoadingService, useToast } from '@/composables';
|
||||
import { useSourceControlStore } from '@/stores/sourceControl.store';
|
||||
import { useUIStore } from '@/stores';
|
||||
import { useRoute } from 'vue-router/composables';
|
||||
import { useRoute } from 'vue-router';
|
||||
|
||||
const props = defineProps({
|
||||
data: {
|
||||
|
|
|
@ -96,13 +96,6 @@
|
|||
/>
|
||||
<Suspense>
|
||||
<NodeCreation
|
||||
v-if="!isReadOnly && !readOnlyEnv"
|
||||
:create-node-active="createNodeActive"
|
||||
:node-view-scale="nodeViewScale"
|
||||
@toggleNodeCreator="onToggleNodeCreator"
|
||||
@addNode="onAddNode"
|
||||
/>
|
||||
<node-creation
|
||||
v-if="!isReadOnlyRoute && !readOnlyEnv"
|
||||
:create-node-active="createNodeActive"
|
||||
:node-view-scale="nodeViewScale"
|
||||
|
|
Loading…
Reference in a new issue