Skip to content

Commit

Permalink
Merge pull request #3360 from Bnyro/master
Browse files Browse the repository at this point in the history
fix: some minor visual glitches in playlists and subscription page
  • Loading branch information
Bnyro authored Jan 24, 2024
2 parents 5bfbd5a + c203f0e commit 6904678
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/PlaylistsPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
id="fileSelector"
ref="fileSelector"
type="file"
class="display-none"
class="hidden"
multiple="multiple"
@change="importPlaylists"
/>
Expand Down
8 changes: 3 additions & 5 deletions src/components/SubscriptionsPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 />
Expand Down

0 comments on commit 6904678

Please sign in to comment.