Skip to content

Commit 7ba469e

Browse files
chore
1 parent e3b1f67 commit 7ba469e

7 files changed

Lines changed: 4 additions & 12 deletions

File tree

src/components/UserTest/answers/UxMetricCard.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
</template>
3030

3131
<script setup>
32-
import { defineProps } from 'vue';
3332
const props = defineProps({
3433
value: { type: [String, Number], required: true },
3534
label: { type: String, required: true },

src/components/navigation/DashboardSidebar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<script setup>
3939
import { computed } from 'vue';
4040
import { useDisplay } from 'vuetify';
41-
import { dashboardNavigationItems } from '@/navigation';
41+
import { dashboardNavigationItems } from '@/components/navigation';
4242
4343
// Composables
4444
const { mobile } = useDisplay();

src/components/navigation/MobileNavigationDrawer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116

117117
<script setup>
118118
import { computed } from 'vue';
119-
import { globalNavigationItems, getFilteredTestItems, getUserInitials } from '@/navigation';
119+
import { globalNavigationItems, getFilteredTestItems, getUserInitials } from '@/components/navigation';
120120
121121
// Props
122122
const props = defineProps({

src/components/navigation/TestNavigationDrawer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777

7878
<script setup>
7979
import { computed } from 'vue';
80-
import { testNavigationItems, getFilteredTestItems } from '@/navigation';
80+
import { testNavigationItems, getFilteredTestItems } from '@/components/navigation';
8181
8282
// Props
8383
const props = defineProps({

src/components/navigation/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ export {
1818
getFilteredTestItems,
1919
getUserInitials,
2020
getAccessLevelText
21-
} from '@/navigation';
21+
} from '@/components/navigation';

src/components/organisms/UserTest/answers/UxMetricCard.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
</template>
3030

3131
<script setup>
32-
import { defineProps } from 'vue';
3332
const props = defineProps({
3433
value: { type: [String, Number], required: true },
3534
label: { type: String, required: true },

src/components/organisms/UserTestAnswer.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,6 @@ const testAnswerDocument = computed(() => store.state.Answer.testAnswerDocument)
7575
7676
const testStructure = computed(() => store.state.Tests.Test.testStructure);
7777
78-
const answers = computed(() =>
79-
testAnswerDocument.value
80-
? Object.values(testAnswerDocument.value)
81-
: []
82-
);
83-
8478
const hasAnswers = computed(() => {
8579
const answers = testAnswerDocument.value?.taskAnswers;
8680
return answers && Object.keys(answers).length > 0;

0 commit comments

Comments
 (0)