Skip to content

Commit

Permalink
fix: prettier format issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Revincx committed Oct 23, 2024
1 parent 99edbd7 commit 8a9a50c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/components/TrackListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@
:exclude="$parent.albumObject.artist.name"
prefix="-"
/></span>
<span v-if="isAlbum && (track.mark & 1048576) === 1048576" class="explicit-symbol"
<span
v-if="isAlbum && (track.mark & 1048576) === 1048576"
class="explicit-symbol"
><ExplicitSymbol
/></span>
</div>
Expand Down
4 changes: 3 additions & 1 deletion src/views/album.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
<span v-else>Compilation by Various Artists</span>
</div>
<div class="date-and-count">
<span v-if="(album.mark & 1048576) === 1048576" class="explicit-symbol"
<span
v-if="(album.mark & 1048576) === 1048576"
class="explicit-symbol"
><ExplicitSymbol
/></span>
<span :title="album.publishTime | formatDate">{{
Expand Down

0 comments on commit 8a9a50c

Please sign in to comment.