Commit 8058c4b 1 parent 5243cf1 commit 8058c4b Copy full SHA for 8058c4b
File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ import usePagination from '~/composables/usePagination';
37
37
38
38
const { client } = useClient ();
39
39
const { currentLocale } = useLocale ();
40
- const getTftDamageSkins = async () => (await client .tftDamageSkins .listAsync ({ locale: currentLocale .value , version: " latest" }));
40
+ const getTftDamageSkins = async () => (await client .tftDamageSkins .listAsync ({ locale: currentLocale .value , version: " latest" }))
41
+ .sort ((a , b ) => a .itemId - b .itemId );
41
42
42
43
const query = ref (" " );
43
44
Original file line number Diff line number Diff line change 15
15
<tbody >
16
16
<tr v-for =" tftItem in tftItems" :key =" tftItem.guid" style =" postion : relative ;" >
17
17
<th scope =" row" >
18
- <NuxtLink class =" text-decoration-none text-light stretched-link" :to =" `/tft-items/overview/${tftItem.guid}`" >
19
- {{ tftItem.guid }}
20
- </NuxtLink >
18
+ <span class =" text-decoration-none text-light fw-normal" >{{ tftItem.guid }}</span >
21
19
</th >
22
20
<th scope =" row" >
23
21
<img class =" rounded" :src =" tftItem.getSquareIcon('latest')" width =" 32" height =" 32" loading =" lazy" onerror =" this.onerror = null; this.src = '/clean-cuts/img/error.png'" />
26
24
<span class =" text-decoration-none text-light fw-normal" >{{ tftItem.name }}</span >
27
25
</th >
28
26
<th scope =" row" >
29
- {{ tftItem.nameId }}
27
+ < span class = " text-decoration-none text-light fw-normal " > {{ tftItem.nameId }}</ span >
30
28
</th >
31
29
</tr >
32
30
</tbody >
You can’t perform that action at this time.
0 commit comments