@eturnity/eturnity_reusable_components 7.4.4-EPDM-7260.23 → 7.4.4-EPDM-7260.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -528,15 +528,15 @@ export default {
|
|
528
528
|
const existing = this.OverlapId.find((id) => id === label.id)
|
529
529
|
|
530
530
|
if (!existing) this.OverlapId.push(label.id)
|
531
|
-
|
532
|
-
} else
|
533
|
-
this.OverlapId = this.OverlapId
|
534
|
-
? this.OverlapId.filter((id) => id !== label.id)
|
535
|
-
: []
|
531
|
+
}
|
536
532
|
})
|
537
533
|
})
|
538
534
|
}
|
539
535
|
|
536
|
+
if (!overlapContainer.includes(true)) {
|
537
|
+
this.OverlapId = []
|
538
|
+
}
|
539
|
+
|
540
540
|
this.hasOverlap = overlapContainer.includes(true)
|
541
541
|
this.$emit('has-overlap', overlapContainer.includes(true))
|
542
542
|
}
|