Commit 05a2960 1 parent 747aaa3 commit 05a2960 Copy full SHA for 05a2960
File tree 2 files changed +3
-3
lines changed
frontend/modules/core/components
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 15
15
<script setup lang="ts">
16
16
import { Status } from " ~/modules/core/types" ;
17
17
18
- const props = defineProps <{ data: { [key in Status ]: number ; }}>()
18
+ defineProps <{ data: { [key in Status ]: number ; }}>()
19
19
20
20
const status = useStatusInjection ()
21
21
Original file line number Diff line number Diff line change 4
4
<v-list-item :class =" bg" >
5
5
<v-list-item-title >{{ capilize(item.source) }}</v-list-item-title >
6
6
<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`" />
9
9
</template >
10
10
</v-list-item >
11
11
</template >
You can’t perform that action at this time.
0 commit comments