Fixed "track not available" message in album link analyzer

This commit is contained in:
RemixDev 2021-10-29 23:58:50 +02:00
parent 29fcd2c392
commit 920313d22b
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@
<h3>{{ $t('linkAnalyzer.countries') }}</h3> <h3>{{ $t('linkAnalyzer.countries') }}</h3>
<p v-for="(country, i) in countries" :key="i">{{ country[0] }} - {{ country[1] }}</p> <p v-for="(country, i) in countries" :key="i">{{ country[0] }} - {{ country[1] }}</p>
</template> </template>
<template v-else> <template v-else-if="this.type === 'track'">
<h3>{{ $t('linkAnalyzer.noCountries') }}</h3> <h3>{{ $t('linkAnalyzer.noCountries') }}</h3>
</template> </template>