Formatting update (Warning! Since this is displayed horizontally and not vertically, you have to reprogram this again...)

This commit is contained in:
Justman10000 2021-10-03 20:16:37 +00:00
parent 2e9b8900aa
commit fded3e7fd5
1 changed files with 4 additions and 4 deletions

View File

@ -118,6 +118,10 @@
<td>{{ $t('linkAnalyzer.table.genres') }}</td>
<td>{{ data.genres.data.map(x => x.name).join('; ') }}</td>
</tr>
<tr v-if="countries.length">
<td>{{ $t('linkAnalyzer.table.countries') }}</td>
<td v-for="(country, i) in countries" :key="i">{{ country[0] }} - {{ country[1] }}</td>
</tr>
</table>
<div v-if="type === 'album'">
@ -125,10 +129,6 @@
{{ $t('linkAnalyzer.table.tracklist') }}
</router-link>
</div>
<div v-if="countries.length">
<p v-for="(country, i) in countries" :key="i">{{ country[0] }} - {{ country[1] }}</p>
</div>
</div>
</div>
</template>