map menu 'action' is working

This commit is contained in:
2023-04-26 12:21:28 +02:00
parent 82731a4884
commit 72d79f8d84
4 changed files with 163 additions and 101 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].entite;
this.entite = this.allEntitesById[this.infos.id];
}
},
mounted () {
@@ -40,7 +40,7 @@ export default {
if (n.type === 'concernement') {
this.concernement = this.concernementsByID[n.id];
} else {
this.entite = this.allEntitesById[n.id].entite;
this.entite = this.allEntitesById[n.id];
}
},
deep: true