diff --git a/app/javascript/dashboard/components/ChatList.vue b/app/javascript/dashboard/components/ChatList.vue index 23fefb8ff..a957ff78b 100644 --- a/app/javascript/dashboard/components/ChatList.vue +++ b/app/javascript/dashboard/components/ChatList.vue @@ -345,6 +345,9 @@ export default { }; }, pageTitle() { + if (this.hasAppliedFilters) { + return this.$t('CHAT_LIST.TAB_HEADING'); + } if (this.inbox.name) { return this.inbox.name; } @@ -439,9 +442,6 @@ export default { }, methods: { onApplyFilter(payload) { - if (this.$route.name !== 'home') { - this.$router.push({ name: 'home' }); - } this.resetBulkActions(); this.foldersQuery = filterQueryGenerator(payload); this.$store.dispatch('conversationPage/reset'); diff --git a/app/javascript/dashboard/components/layout/sidebarComponents/SecondaryChildNavItem.vue b/app/javascript/dashboard/components/layout/sidebarComponents/SecondaryChildNavItem.vue index 2dd23544f..cb5c52c76 100644 --- a/app/javascript/dashboard/components/layout/sidebarComponents/SecondaryChildNavItem.vue +++ b/app/javascript/dashboard/components/layout/sidebarComponents/SecondaryChildNavItem.vue @@ -112,6 +112,7 @@ $label-badge-size: var(--space-slab); padding: var(--space-smaller) var(--space-smaller); margin: var(--space-smaller) 0; text-align: left; + line-height: 1.2; &:hover { background: var(--s-25); @@ -135,8 +136,6 @@ $label-badge-size: var(--space-slab); .menu-label { flex-grow: 1; - display: inline-flex; - align-items: center; } .inbox-icon {