cleaned, started map_mode, added agissante, superposition, proximite fields to graphql

This commit is contained in:
2023-04-26 10:10:29 +02:00
parent 94d5b6bd99
commit 82731a4884
6 changed files with 39 additions and 46 deletions

View File

@@ -21,7 +21,7 @@ export default {
if (this.infos.type === 'concernement') {
this.concernement = this.concernementsByID[this.infos.id];
} else {
this.entite = this.allEntitesById[this.infos.id];
this.entite = this.allEntitesById[this.infos.id].entite;
}
},
mounted () {
@@ -40,7 +40,7 @@ export default {
if (n.type === 'concernement') {
this.concernement = this.concernementsByID[n.id];
} else {
this.entite = this.allEntitesById[n.id];
this.entite = this.allEntitesById[n.id].entite;
}
},
deep: true