diff --git a/assets/pages/Container.vue b/assets/pages/Container.vue index f41cea2c..331451af 100644 --- a/assets/pages/Container.vue +++ b/assets/pages/Container.vue @@ -32,6 +32,11 @@ export default { title: this.title }; }, + mounted() { + if (this.allContainersById[this.id]) { + this.title = this.allContainersById[this.id].name; + } + }, computed: { ...mapState(["activeContainers"]), ...mapGetters(["allContainersById"])