Fixed bug in format list
This commit is contained in:
parent
cbfade1133
commit
e10f249730
1 changed files with 6 additions and 3 deletions
|
@ -56,9 +56,12 @@
|
||||||
<strong>Format : </strong>
|
<strong>Format : </strong>
|
||||||
<span v-for="(format, index) in item.formats">
|
<span v-for="(format, index) in item.formats">
|
||||||
{{ format.name }}
|
{{ format.name }}
|
||||||
(<template v-for="(description, j) in format.descriptions">
|
<template v-if="format.descriptions">
|
||||||
{{description}}<template v-if="j < format.descriptions.length - 1">, </template>
|
(<template v-for="(description, j) in format.descriptions">
|
||||||
</template>)<template v-if="index < item.formats.length - 1">, </template>
|
{{description}}<template v-if="j < format.descriptions.length - 1">, </template>
|
||||||
|
</template>)
|
||||||
|
</template>
|
||||||
|
<template v-if="index < item.formats.length - 1">, </template>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<br />
|
<br />
|
||||||
|
|
Loading…
Reference in a new issue