Skip to content

Commit c9d4655

Browse files
ShenQingchuansxzz
andauthoredAug 8, 2023
fix(theme): language menu undefined text (#2755)
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
1 parent 3695190 commit c9d4655

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/client/theme-default/components/VPFlyout.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function onBlur() {
3939
>
4040
<span v-if="button || icon" class="text">
4141
<component v-if="icon" :is="icon" class="option-icon" />
42-
<span v-html="button"></span>
42+
<span v-if="button" v-html="button"></span>
4343
<VPIconChevronDown class="text-icon" />
4444
</span>
4545

0 commit comments

Comments
 (0)
Please sign in to comment.