1781-zoneHoliday #994

Merged
joan merged 49 commits from 1781-zoneHoliday into dev 2022-08-03 06:41:31 +00:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 94872f8493 - Show all commits

View File

@ -289,8 +289,10 @@ class Controller extends Section {
}
getChecked(data) {
for (let geo of data)
for (let geo of data) {
geo.checked = this.exclusionGeos.has(geo.id);
if (geo.childs) this.getChecked(geo.childs);
}
}
onItemCheck(geoId, checked) {