Skip to content

Commit

Permalink
fix(card): alias fallback not null
Browse files Browse the repository at this point in the history
  • Loading branch information
qwqVictor committed Sep 27, 2023
1 parent 79699ec commit 29362c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MirrorCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</svg>
</div>
<div class="detail-left">
<span class="title">{{ name ?? id }}</span>
<span class="title">{{ name || id }}</span>
<span v-if="lastUpdate" class="update">
<span v-if="!isShrinked" class="lastUpdate">最后更新:</span>
{{ lastUpdate }}
Expand Down

0 comments on commit 29362c6

Please sign in to comment.