refactor(editor): Fix type errors in NodeDetailsView.vue (no-changelog) (#9431)

This commit is contained in:
Ricardo Espinoza 2024-05-17 10:57:14 -04:00 committed by GitHub
parent 3a5412850c
commit 18933edff1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 567 additions and 456 deletions

View file

@ -88,7 +88,7 @@ export default defineComponent({
type: Number, type: Number,
}, },
nodeType: { nodeType: {
type: Object as PropType<INodeTypeDescription>, type: Object as PropType<INodeTypeDescription | null>,
default: () => ({}), default: () => ({}),
}, },
}, },

File diff suppressed because it is too large Load diff

View file

@ -404,7 +404,7 @@ export default defineComponent({
type: String, type: String,
}, },
nodeType: { nodeType: {
type: Object as PropType<INodeTypeDescription>, type: Object as PropType<INodeTypeDescription | null>,
}, },
readOnly: { readOnly: {
type: Boolean, type: Boolean,