Skip to content

Commit

Permalink
harmonized naming scheme for components in data route
Browse files Browse the repository at this point in the history
  • Loading branch information
jspaaks committed Nov 30, 2022
1 parent 2b6b821 commit 8c15f24
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
12 changes: 6 additions & 6 deletions pages/data/v0.1/index.page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<ChecklistHeader />
<main>
<h1>FAIR for data self-assessment checklist</h1>
<BannerVersions />
<ChecklistBannerVersions />
<template v-if="nQuestions.total > 0">
<p>
Answer the {{ nQuestions.total }} questions below to assess
Expand All @@ -20,7 +20,7 @@
v-bind:question="question"
/>
</div>
<ProgressBars
<ChecklistProgressBars
v-bind:progress="progress"
/>
<ChecklistAbout />
Expand All @@ -33,21 +33,21 @@
</template>

<script setup lang="ts">
import { latest } from '~/renderer/versions';
import { aspects } from './store';
import { latest } from '~/renderer/versions';
import { nQuestions } from './store';
import { progress } from './store';
import { questions } from './store';
import { questions as data } from './questions.json';
import { setQuestions } from './store';
import { type Aspect } from './types';
import { type Question } from './types';
import ChecklistAbout from './ChecklistAbout.vue';
import BannerVersions from './BannerVersions.vue';
import ChecklistBannerVersions from './ChecklistBannerVersions.vue';
import ChecklistHeader from './ChecklistHeader.vue';
import ChecklistLink from './ChecklistLink.vue';
import ProgressBars from './ProgressBars.vue';
import ChecklistProgressBars from './ChecklistProgressBars.vue';
import ChecklistQuestion from './ChecklistQuestion.vue';
import { questions as data } from './questions.json';
import '~/renderer/global.css';
import './app.css';
Expand Down
File renamed without changes.

0 comments on commit 8c15f24

Please sign in to comment.