Skip to content

Commit

Permalink
fix: null icon
Browse files Browse the repository at this point in the history
  • Loading branch information
M-ls committed Sep 3, 2024
1 parent 3f855cb commit 3c26bf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/list/list_nav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<li class="u-item" v-for="(item, i) in xfmaps" :key="i" v-show="item.client.includes(client)">
<router-link class="u-link" :to="{ query: { subtype: item.name } }" :class="{ on: isActive(item) }">
<i class="u-pic">
<img :src="showMountIcon(item.id)" :alt="item.name" />
<img :src="showMountIcon(item.id)" :alt="item.name" onerror="this.src='https://img.jx3box.com/image/xf/0.png'"/>
</i>
<span class="u-txt">{{ item.name }}</span>
</router-link>
Expand Down

0 comments on commit 3c26bf1

Please sign in to comment.