@eturnity/eturnity_reusable_components 7.48.1-EPDM-12680.18 → 7.48.1-EPDM-12680.19
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
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M0.75 0H8.33405L11.7467 3.41264V6.7202H10.5248V4.88741H6.85927V1.22185H1.97185V12.2185H5.63741V13.4404H0.75V0ZM8.08112 1.47478V3.66556H10.2719L8.08112 1.47478ZM10.5554 7.99581L13.5233 10.9979L10.5554 14L9.68664 13.141L11.2017 11.6088H6.85805V10.387H11.2017L9.68664 8.85477L10.5554 7.99581Z" fill="#0D0D0D"/>
|
3
|
+
</svg>
|
@@ -769,7 +769,7 @@
|
|
769
769
|
return []
|
770
770
|
}
|
771
771
|
const existingTrackerNumbers = item.mppts.map(
|
772
|
-
(mppt) => mppt.
|
772
|
+
(mppt) => mppt.trackerNumber
|
773
773
|
)
|
774
774
|
const filteredAvailableMPPTs = item.availableMPPTs.filter(
|
775
775
|
(mppt) => !existingTrackerNumbers.includes(mppt.tracker_number)
|
@@ -820,15 +820,11 @@
|
|
820
820
|
} else {
|
821
821
|
this.expandedInverters = this.dataList.map((item) => item.inverterId)
|
822
822
|
this.expandedMppts = this.dataList.flatMap((item) => {
|
823
|
-
const availableMppts = this.availableMPPTData(item)
|
824
823
|
return [
|
825
824
|
...item.mppts.map((mppt) => mppt.mpptId),
|
826
825
|
...(item.storageSystem
|
827
826
|
? [item.storageSystem.storage_system_id]
|
828
827
|
: []),
|
829
|
-
...(availableMppts
|
830
|
-
? availableMppts.map((mppt) => mppt.mpptId)
|
831
|
-
: []),
|
832
828
|
]
|
833
829
|
})
|
834
830
|
}
|