This commit is contained in:
barsdeveloper
2022-04-02 11:13:34 +02:00
parent 9ab8801eee
commit e901932953
26 changed files with 392 additions and 279 deletions

View File

@@ -83,7 +83,11 @@ export default class PinEntity extends IEntity {
return !this.bHidden && this.Direction === "EGPD_Output"
}
isConnected() {
/**
*
* @returns {Boolean}
*/
isLinked() {
return this.LinkedTo?.length > 0 ?? false
}