summaryrefslogtreecommitdiffstats
path: root/src/router
diff options
context:
space:
mode:
authordependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>2019-12-08 10:22:10 +0000
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-12-08 17:48:12 +0100
commit213a1fc421da26a9d3852721aaf1cd3fbdc7b162 (patch)
tree3c036c4d500cc40c3eb2bbbf89943e15f6a5d24f /src/router
parent544cc04f1608e8c0555cde50dbccd6e0e964589b (diff)
Bump eslint-config-nextcloud from 0.0.6 to 0.1.0
Bumps [eslint-config-nextcloud](https://github.com/nextcloud/eslint-config-nextcloud) from 0.0.6 to 0.1.0. - [Release notes](https://github.com/nextcloud/eslint-config-nextcloud/releases) - [Commits](https://github.com/nextcloud/eslint-config-nextcloud/compare/v0.0.6...v0.1.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Diffstat (limited to 'src/router')
-rw-r--r--src/router/index.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/router/index.js b/src/router/index.js
index 6d678e4e..1f8fd221 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -42,20 +42,20 @@ export default new Router({
// always load default group
redirect: {
name: 'group',
- params: { selectedGroup: t('contacts', 'All contacts') }
+ params: { selectedGroup: t('contacts', 'All contacts') },
},
children: [
{
path: ':selectedGroup',
name: 'group',
- component: Contacts
+ component: Contacts,
},
{
path: ':selectedGroup/:selectedContact',
name: 'contact',
- component: Contacts
- }
- ]
- }
- ]
+ component: Contacts,
+ },
+ ],
+ },
+ ],
})