From de936953bc46187fb84ae1e523ff7558333fef8f Mon Sep 17 00:00:00 2001 From: Bryan Mauger Date: Fri, 14 Apr 2023 10:08:29 -0400 Subject: [PATCH] Format code. --- src/router/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index e9a8f2773..3abfa058d 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -163,9 +163,9 @@ const router = createRouter({ routes, //Cause "page" to begin at the top when route chanages. scrollBehavior(to, from, savedPosition) { - // always scroll to top - return { top: 0 } - }, + // always scroll to top + return { top: 0 }; + }, }); //---------------------------------------------------------- Router Functions ----------------------------------------------------------