From 98ee491865e2beb47bd1ec08f314a25ed809c2bc Mon Sep 17 00:00:00 2001 From: Amir Date: Tue, 7 Jan 2020 10:37:57 -0800 Subject: [PATCH] Fixes title --- assets/pages/Container.vue | 5 +++++ 1 file changed, 5 insertions(+) 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"])