@eturnity/eturnity_reusable_components 7.4.4-EPDM-7260.13 → 7.4.4-EPDM-7260.14

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "7.4.4-EPDM-7260.13",
3
+ "version": "7.4.4-EPDM-7260.14",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -504,6 +504,8 @@ export default {
504
504
 
505
505
  if (labels) {
506
506
  labels.value.forEach((label) => {
507
+ if (this.hasOverlap) return
508
+
507
509
  label.selectedTariffs.forEach((tariff) => {
508
510
  this.hasOverlap = this.checkOverlap(tariff, label.selectedTariffs)
509
511
 
@@ -511,6 +513,7 @@ export default {
511
513
  const existing = this.OverlapId.find((id) => id === label.id)
512
514
 
513
515
  if (!existing) this.OverlapId.push(label.id)
516
+ return
514
517
  } else
515
518
  this.OverlapId = this.OverlapId
516
519
  ? this.OverlapId.filter((id) => id !== label.id)