diff --git a/assets/App.vue b/assets/App.vue index 8ef6b467..1110d1ad 100644 --- a/assets/App.vue +++ b/assets/App.vue @@ -76,7 +76,7 @@ export default { }, async created() { await this.fetchContainerList(); - this.title = `${this.containers.length} containers`; + this.title = `${this.visibleContainers.length} containers`; }, mounted() { if (this.hasSmallerScrollbars) { @@ -94,7 +94,8 @@ export default { }, }, computed: { - ...mapState(["containers", "activeContainers", "isMobile", "settings"]), + ...mapState(["activeContainers", "isMobile", "settings"]), + ...mapGetters(["visibleContainers"]), hasSmallerScrollbars() { return this.settings.smallerScrollbars; },