From 6981a0790d040cdebd92d30c38b8bb19f9b57473 Mon Sep 17 00:00:00 2001 From: Abhinav Raut Date: Sat, 7 Jun 2025 22:38:43 +0530 Subject: [PATCH] fix: update contacts route title to 'All contacts' --- frontend/src/router/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/router/index.js b/frontend/src/router/index.js index 2a4bed59..2a02f9b4 100644 --- a/frontend/src/router/index.js +++ b/frontend/src/router/index.js @@ -39,7 +39,7 @@ const routes = [ path: 'contacts', name: 'contacts', component: () => import('@/views/contact/ContactsView.vue'), - meta: { title: 'Contacts' } + meta: { title: 'All contacts' } }, { path: 'contacts/:id',