This repository was archived by the owner on Jan 6, 2024. It is now read-only.
Commit 76222f5 1 parent 34d0d0c commit 76222f5 Copy full SHA for 76222f5
File tree 2 files changed +13
-8
lines changed
2 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -214,14 +214,19 @@ useInfiniteScroll(
214
214
<tr v-for =" (item, index) in list" :key =" index" class =" group" h-8 border =" b dashed transparent hover:base" >
215
215
<td text-sm op70 >
216
216
<div flex =" inline gap3" items-center >
217
- <template v-if =" item ?.repository ?.url " >
218
- <a :href =" item.repository.url" target =" _blank" hover =" text-primary" >
217
+ <VTooltip placement =" top" >
218
+ <template v-if =" item ?.repository ?.url " >
219
+ <a :href =" item.repository.url" target =" _blank" hover =" text-primary" >
220
+ {{ item.name }}
221
+ </a >
222
+ </template >
223
+ <template v-else >
219
224
{{ item.name }}
220
- </a >
221
- </ template >
222
- < template v-else >
223
- {{ item.name }}
224
- </template >
225
+ </template >
226
+ < template v-if = " item ?. description " # popper >
227
+ {{ item?.description }}
228
+ </ template >
229
+ </VTooltip >
225
230
</div >
226
231
</td >
227
232
<VDropdown max-w =" 10" placement =" bottom-start" :distance =" 5" >
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export interface DocumentInfo {
65
65
export interface PackageInfo {
66
66
name : string
67
67
version : string
68
- descriptions : string
68
+ description : string
69
69
owner : {
70
70
name : string
71
71
link : string
You can’t perform that action at this time.
0 commit comments