Fixing typos and name changes after linting
This commit is contained in:
parent
794fb59842
commit
35364ee25e
@ -2,6 +2,6 @@
|
|||||||
<router-link to="/">Home</router-link>
|
<router-link to="/">Home</router-link>
|
||||||
<router-link to="/about">About</router-link>
|
<router-link to="/about">About</router-link>
|
||||||
<router-link to="/referenceId">Reference ID Tracker</router-link>
|
<router-link to="/referenceId">Reference ID Tracker</router-link>
|
||||||
<router-link to="/interactionsSankey">Interaction Sankey</router-link>
|
<router-link to="/interactionsFlow">Interactions Flow</router-link>
|
||||||
<router-view></router-view>
|
<router-view></router-view>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@ -16,7 +16,7 @@ const routes = [
|
|||||||
// this generates a separate chunk (about.[hash].js) for this route
|
// this generates a separate chunk (about.[hash].js) for this route
|
||||||
// which is lazy-loaded when the route is visited.
|
// which is lazy-loaded when the route is visited.
|
||||||
component: () =>
|
component: () =>
|
||||||
import(/* webpackChunkName: "about" */ "../views/AbouView.vue"),
|
import(/* webpackChunkName: "about" */ "../views/AboutView.vue"),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "/referenceId",
|
path: "/referenceId",
|
||||||
|
|||||||
@ -3,7 +3,7 @@ import { ref } from "vue";
|
|||||||
|
|
||||||
import ContactTable from "../components/ContactTable.vue";
|
import ContactTable from "../components/ContactTable.vue";
|
||||||
import ContactsSummary from "../components/ContactsSummary.vue";
|
import ContactsSummary from "../components/ContactsSummary.vue";
|
||||||
import Error from "../components/Error.vue";
|
import ErrorMessage from "../components/ErrorMessage.vue";
|
||||||
|
|
||||||
const referenceId = ref("");
|
const referenceId = ref("");
|
||||||
const contactData = ref(null);
|
const contactData = ref(null);
|
||||||
@ -63,7 +63,7 @@ function fetchData() {
|
|||||||
v-if="contactData"
|
v-if="contactData"
|
||||||
:table-data="contactData.data.findContactsCompletedBetween.edges"
|
:table-data="contactData.data.findContactsCompletedBetween.edges"
|
||||||
/>
|
/>
|
||||||
<Error v-if="errorMessage" :error-message="errorMessage" />
|
<ErrorMessage v-if="errorMessage" :message="errorMessage" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<style scoped></style>
|
<style scoped></style>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user