summaryrefslogtreecommitdiffstats
path: root/src/main.js
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/main.js
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/main.js')
-rw-r--r--src/main.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.js b/src/main.js
index 23b16dc9..8d25bff1 100644
--- a/src/main.js
+++ b/src/main.js
@@ -75,7 +75,7 @@ if (window.location.pathname.split('/')[1] === 'index.php'
&& oc_config.modRewriteWorking) {
router.push({
name: 'group',
- params: { selectedGroup: t('contacts', 'All contacts') }
+ params: { selectedGroup: t('contacts', 'All contacts') },
})
}
@@ -84,5 +84,5 @@ export default new Vue({
name: 'ContactsApp',
router,
store,
- render: h => h(App)
+ render: h => h(App),
})