Merge pull request #3360 from Bnyro/master

fix: some minor visual glitches in playlists and subscription page
This commit is contained in:
Bnyro 2024-01-24 18:02:54 +01:00 committed by GitHub
commit 690467895d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 6 deletions

View File

@ -9,7 +9,7 @@
id="fileSelector"
ref="fileSelector"
type="file"
class="display-none"
class="hidden"
multiple="multiple"
@change="importPlaylists"
/>

View File

@ -35,11 +35,9 @@
v-text="`${$t('actions.export_to_json')} (${$t('titles.channel_groups')})`"
/>
</div>
<div class="flex self-center gap-1">
<!-- subscriptions count, only shown if there are any -->
<i18n-t v-if="subscriptions.length > 0" keypath="subscriptions.subscribed_channels_count">{{
subscriptions.length
}}</i18n-t>
<!-- subscriptions count, only shown if there are any -->
<div v-if="subscriptions.length > 0" class="flex self-center gap-1">
<i18n-t keypath="subscriptions.subscribed_channels_count">{{ subscriptions.length }}</i18n-t>
</div>
</div>
<br />