fix back translation template
This commit is contained in:
@@ -153,18 +153,11 @@ export default {
|
|||||||
class="text-sm text-gray-500 dark:text-gray-400"
|
class="text-sm text-gray-500 dark:text-gray-400"
|
||||||
>
|
>
|
||||||
<span @click='this.$emit("search-term", tt.string1)'>{{ tt.string1 }}</span>
|
<span @click='this.$emit("search-term", tt.string1)'>{{ tt.string1 }}</span>
|
||||||
<span v-if="tt.pronunciations">
|
<span v-if="tt.pronunciations" class=" whitespace-nowrap">
|
||||||
<span
|
<span v-if="tt.pronunciations[0]"
|
||||||
class="mx-1 text-sm font-bold"
|
class="ml-1 text-sm font-bold"
|
||||||
v-bind:class="{
|
>[{{ tt.pronunciations[0].ipa }}]
|
||||||
'text-green-800': i == 0,
|
<vue-sound :src="tt.pronunciations[0].filename"></vue-sound>
|
||||||
'text-blue-800': i == 1,
|
|
||||||
'text-red-800': i == 3,
|
|
||||||
}"
|
|
||||||
v-for="(p, i) in tt.pronunciations"
|
|
||||||
:key="i"
|
|
||||||
>[{{ p.ipa }}]
|
|
||||||
<vue-sound :src="p.filename"></vue-sound>
|
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user