Skip to content

Commit

Permalink
Removed unused components & refs for scoring
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiefeiss committed Aug 8, 2023
1 parent 0c98ed5 commit 685288c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 17 deletions.
13 changes: 0 additions & 13 deletions src/components/scores/ScoreBadge.vue

This file was deleted.

3 changes: 0 additions & 3 deletions src/components/scores/ScoreWidget.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
<script lang="ts" setup>
import { ref } from "vue";
import FairScore from "@/components/scores/FairScore.vue";
import CareScore from "@/components/scores/CareScore.vue";
const props = defineProps<{
score: {[key: string]: number};
name: string;
}>();
const collapse = ref(false); // collapse to a badge
</script>

<template>
Expand Down
2 changes: 1 addition & 1 deletion src/views/ItemListView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ onMounted(() => {
<PaginationComponent :url="route.path" :totalCount="count" :currentPage="currentPageNumber" :perPage="perPage" />
</template>
<template v-else>No {{ itemType.label }} found.</template>
<Teleport v-if="searchEnabled && flavour" to="#right-bar-content">
<Teleport v-if="searchEnabled && flavour" to="#search-teleport">
<AdvancedSearch :flavour="flavour" :query="searchDefaults" />
</Teleport>
</template>
Expand Down

0 comments on commit 685288c

Please sign in to comment.