Skip to content

Commit 05a2960

Browse files
committed
fix source status list
Signed-off-by: Frank Jogeleit <[email protected]>
1 parent 747aaa3 commit 05a2960

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

frontend/modules/core/components/graph/ResourceResultCounts.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<script setup lang="ts">
1616
import { Status } from "~/modules/core/types";
1717
18-
const props = defineProps<{ data: { [key in Status]: number; }}>()
18+
defineProps<{ data: { [key in Status]: number; }}>()
1919
2020
const status = useStatusInjection()
2121

frontend/modules/core/components/resource/SourceResults.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<v-list-item :class="bg">
55
<v-list-item-title>{{ capilize(item.source) }}</v-list-item-title>
66
<template v-slot:append>
7-
<ResultChip v-if="showSkipped" class="ml-2" :status="Status.SKIP" :count="item[Status.SKIP]" tooltip="skip results" />
8-
<ResultChip v-for="status in showed" :key="status" class="ml-2" :status="status" :count="item[status]" :tooltip="`${status} results`" />
7+
<ResultChip v-if="showSkipped" class="ml-2" :status="Status.SKIP" :count="item.status[Status.SKIP]" tooltip="skip results" />
8+
<ResultChip v-for="status in showed" :key="status" class="ml-2" :status="status" :count="item.status[status]" :tooltip="`${status} results`" />
99
</template>
1010
</v-list-item>
1111
</template>

0 commit comments

Comments
 (0)