File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -14,19 +14,13 @@ const emit = defineEmits<{
1414}>()
1515
1616const pkg = computed (() => props .result .package )
17- const score = computed (() => props .result .score )
1817
1918const updatedDate = computed (() => props .result .package .date )
2019const { isPackageSelected, togglePackageSelection, canSelectMore } = usePackageSelection ()
2120const isSelected = computed <boolean >(() => {
2221 return isPackageSelected (props .result .package .name )
2322})
2423
25- function formatScore(value ? : number ): string {
26- if (value === undefined || value === 0 ) return ' -'
27- return Math .round (value * 100 ).toString ()
28- }
29-
3024function isColumnVisible(id : string ): boolean {
3125 return props .columns .find (c => c .id === id )?.visible ?? false
3226}
You can’t perform that action at this time.
0 commit comments