File tree 1 file changed +9
-5
lines changed
src/components/common/list
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -302,11 +302,15 @@ const onTagClick = (url?: string) => {
302
302
class =" tags"
303
303
>
304
304
<template v-if =" loading && showTagLoader " >
305
- <NSkeleton text style =" width : 120px ; height : 18px " />
305
+ <NSkeleton text style =" width : 120px ; height : 18px ; border-radius : 2 px " />
306
306
</template >
307
307
<template v-else >
308
308
<template v-for =" (tag , i ) of tags " :key =" ` ${i }-${tag .label } ` " >
309
- <NSkeleton v-if =" loading" text style =" width : 6% " />
309
+ <NSkeleton
310
+ v-if =" loading"
311
+ text
312
+ style =" width : 120px ; height : 18px ; border-radius : 2px "
313
+ />
310
314
<TagLink :tag =" tag" @on-click =" onTagClick" />
311
315
</template >
312
316
</template >
@@ -316,7 +320,7 @@ const onTagClick = (url?: string) => {
316
320
v-if =" loading"
317
321
key =" date-loader"
318
322
text
319
- style =" width : 42px ; height : 18px "
323
+ style =" width : 42px ; height : 18px ; border-radius : 2 px "
320
324
/>
321
325
<NTag
322
326
v-else
@@ -334,7 +338,7 @@ const onTagClick = (url?: string) => {
334
338
v-if =" loading"
335
339
key =" collected-loader"
336
340
text
337
- style =" width : 22px ; height : 18px "
341
+ style =" width : 22px ; height : 18px ; border-radius : 2 px "
338
342
/>
339
343
<NTag
340
344
v-else
@@ -358,7 +362,7 @@ const onTagClick = (url?: string) => {
358
362
v-if =" loading"
359
363
key =" played-loader"
360
364
text
361
- style =" width : 22px ; height : 18px "
365
+ style =" width : 22px ; height : 18px ; border-radius : 2 px "
362
366
/>
363
367
<NTag
364
368
v-else
You can’t perform that action at this time.
0 commit comments