(fix) prevent breaking of RTL when IPA follows name

This commit is contained in:
Valentyne Stigloher 2025-06-29 22:16:23 +02:00
parent f786c37259
commit 7539234201

View File

@ -41,7 +41,7 @@ const op = computed((): (Opinion & { description: string }) | null => {
<Icon :v="op.icon" />
</Tooltip>
<nuxt-link v-if="link" :to="link" :class="`colour-${op.colour || 'default'}`"><Spelling :escape="escape" :text="word" /></nuxt-link>
<span v-else><Spelling :escape="escape" :markdown="markdown" :text="word" /></span>
<Spelling v-else :escape="escape" :markdown="markdown" :text="word" class="d-inline-block" />
<Pronunciation v-if="pronunciation" :pronunciation="pronunciation" text />
</span>
</template>