I am encountering an issue while working with 5 objects in my API. I need to compare them in a specific computed way and then integrate the results into the layout. However, I am receiving an error indicating that the data type is not boolean and that the property isAllProperty
is unrecognized.
isAllProperty (): boolean {
let fullProperty = this.property1.name || this.property2.name || this.property3.name || this.property4.name || this.property5.name;
return isAllStack;
}