Skip to content

Commit

Permalink
remove useless if
Browse files Browse the repository at this point in the history
  • Loading branch information
tamland committed Oct 25, 2024
1 parent e4937e0 commit fb32542
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/library/playlist/Playlist.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,8 @@
<span class="text-nowrap">
<strong>{{ playlist.trackCount }}</strong> tracks
</span>
<template v-if="playlist.duration != null">
<span class="mx-1">•</span>
<strong>{{ formatDuration(playlist.duration) }}</strong>
</template>
<span class="mx-1">•</span>
<strong>{{ formatDuration(playlist.duration) }}</strong>
<template v-if="playlist.isPublic">
<span class="mx-1">•</span>
<span class="badge badge-secondary badge-pill">

Check warning on line 26 in src/library/playlist/Playlist.vue

View workflow job for this annotation

GitHub Actions / build

Multiple spaces found before 'class'
Expand Down

0 comments on commit fb32542

Please sign in to comment.