Fix unexpected key types

This commit is contained in:
barsdeveloper
2023-04-03 19:12:00 +02:00
parent 3eec5b5e1c
commit 62b3968af3
6 changed files with 25 additions and 5 deletions

View File

@@ -110,6 +110,14 @@ export default class PinEntity extends IEntity {
type: [PinReferenceEntity],
showDefault: false,
},
SubPins: {
type: [PinReferenceEntity],
showDefault: false,
},
ParentPin: {
type: PinReferenceEntity,
showDefault: false,
},
DefaultValue: {
/** @param {PinEntity} pinEntity */
type: new ComputedType(pinEntity => pinEntity.getEntityType(true) ?? String),