From 35364ee25eb3e6620cbdf4a8a901495f3c7e1208 Mon Sep 17 00:00:00 2001 From: "Peter.Morton" Date: Tue, 27 Jun 2023 15:34:07 -0500 Subject: [PATCH] Fixing typos and name changes after linting --- src/App.vue | 2 +- src/router/index.js | 2 +- src/views/SearchByReferenceView.vue | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/App.vue b/src/App.vue index c092638..2adc45b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -2,6 +2,6 @@ Home About Reference ID Tracker - Interaction Sankey + Interactions Flow diff --git a/src/router/index.js b/src/router/index.js index c9bcf89..38f5db3 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -16,7 +16,7 @@ const routes = [ // this generates a separate chunk (about.[hash].js) for this route // which is lazy-loaded when the route is visited. component: () => - import(/* webpackChunkName: "about" */ "../views/AbouView.vue"), + import(/* webpackChunkName: "about" */ "../views/AboutView.vue"), }, { path: "/referenceId", diff --git a/src/views/SearchByReferenceView.vue b/src/views/SearchByReferenceView.vue index f6742b3..bee6030 100644 --- a/src/views/SearchByReferenceView.vue +++ b/src/views/SearchByReferenceView.vue @@ -3,7 +3,7 @@ import { ref } from "vue"; import ContactTable from "../components/ContactTable.vue"; import ContactsSummary from "../components/ContactsSummary.vue"; -import Error from "../components/Error.vue"; +import ErrorMessage from "../components/ErrorMessage.vue"; const referenceId = ref(""); const contactData = ref(null); @@ -63,7 +63,7 @@ function fetchData() { v-if="contactData" :table-data="contactData.data.findContactsCompletedBetween.edges" /> - +