mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
refactor(editor): Fix type errors in NodeDetailsView.vue
(no-changelog) (#9431)
This commit is contained in:
parent
3a5412850c
commit
18933edff1
|
@ -88,7 +88,7 @@ export default defineComponent({
|
|||
type: Number,
|
||||
},
|
||||
nodeType: {
|
||||
type: Object as PropType<INodeTypeDescription>,
|
||||
type: Object as PropType<INodeTypeDescription | null>,
|
||||
default: () => ({}),
|
||||
},
|
||||
},
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -404,7 +404,7 @@ export default defineComponent({
|
|||
type: String,
|
||||
},
|
||||
nodeType: {
|
||||
type: Object as PropType<INodeTypeDescription>,
|
||||
type: Object as PropType<INodeTypeDescription | null>,
|
||||
},
|
||||
readOnly: {
|
||||
type: Boolean,
|
||||
|
|
Loading…
Reference in a new issue