From 3bbbc2f166faaca450889586c27c8a4ec84b03c0 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 14 Jun 2019 12:34:41 +0100 Subject: [PATCH] Remove trailing commas, split SVG onto multiple lines --- resources/js/components/Navbar.vue | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/resources/js/components/Navbar.vue b/resources/js/components/Navbar.vue index 18ddbb34..c195414f 100644 --- a/resources/js/components/Navbar.vue +++ b/resources/js/components/Navbar.vue @@ -21,7 +21,11 @@ aria-label="Toggle main menu" @click="hidden = !hidden" > - + @@ -67,38 +71,38 @@ export default { { title: 'About', href: '/', - pattern: '^/.$', + pattern: '^/.$' }, { title: 'Projects', href: '/projects', - pattern: '^/projects/?$', + pattern: '^/projects/?$' }, { title: 'Articles', href: '/articles', - pattern: '^/articles/?', + pattern: '^/articles/?' }, { title: 'Talks', href: '/talks', - pattern: '^/talks/?', + pattern: '^/talks/?' }, { title: 'Podcasts', href: '/podcasts', - pattern: '^/podcasts/?', + pattern: '^/podcasts/?' }, { title: 'Book', href: '/test-driven-drupal', - pattern: '^/test-driven-drupal/?$', + pattern: '^/test-driven-drupal/?$' }, { title: 'Contact', href: '/contact', - pattern: '^/contact/?', - }, + pattern: '^/contact/?' + } ], } },