Skip to content

Commit

Permalink
style: automatic eslint fix
Browse files Browse the repository at this point in the history
Signed-off-by: Fernando Fernández <[email protected]>
  • Loading branch information
ferferga committed Sep 9, 2024
1 parent 3c592fd commit ef55e26
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/Item/Card/ItemCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ const cardSubtitle = computed(() => {
case BaseItemKind.Episode: {
return !isNil(item.ParentIndexNumber) && !isNil(item.IndexNumber) && !isNil(item.Name)
? `${t('seasonEpisodeAbbrev', {
seasonNumber: item.ParentIndexNumber,
episodeNumber: item.IndexNumber
})} - ${item.Name}`
seasonNumber: item.ParentIndexNumber,
episodeNumber: item.IndexNumber
})} - ${item.Name}`
: undefined;
}
case BaseItemKind.MusicAlbum: {
Expand Down
1 change: 0 additions & 1 deletion frontend/src/components/Playback/PlayerElement.vue
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ watch(mediaElementRef, async () => {
hls.on(Events.ERROR, onHlsEror);
}
console.log('attach called');
await attachWebAudio(mediaElementRef.value);
}
});
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Users/UserCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
rounded
:size="128" />
</VBtn>
<a class="text-subtitle-1 text-center link mt-2">
<a class="text-center link text-subtitle-1 mt-2">
{{ user.Name }}
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/item/[itemId].vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</RouterLink>
</h3>
<div
class="text-h4 font-weight-medium text-caption mt-2"
class="text-h4 font-weight-medium mt-2 text-caption"
:class="{ 'text-center': !$vuetify.display.mdAndUp }">
<MediaInfo
:item="item"
Expand Down

0 comments on commit ef55e26

Please sign in to comment.