Skip to content

Commit

Permalink
style: automatic eslint fix
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <[email protected]>
  • Loading branch information
ferferga authored Aug 9, 2024
1 parent 84fddbd commit 0de6181
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/Dialogs/ConfirmDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<VDivider />
<VCardText
class="d-flex text-center align-center justify-center">
class="text-center d-flex align-center justify-center">
<JSafeHtml :html="innerHtml" />
</VCardText>
<VCardActions class="align-center justify-center">
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Playback/TrackList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
:to="getItemDetailsLink(artist, 'MusicArtist')"
custom>
<span
class="link text--secondary"
class="text--secondary link"
@click="navigate">
{{ artist.Name }}
</span>
Expand Down
7 changes: 4 additions & 3 deletions frontend/src/pages/genre/[itemId].vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@
<SkeletonCard
v-for="n in 24"
:key="n"
boilerplate
text />

text
boilerplate />
</VCol>
<div class="empty-message text-center">
<div class="text-center empty-message">
<h1 class="text-h5">
{{ $t('libraryEmpty') }}
</h1>
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/pages/item/[itemId].vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
class="text-h6 font-weight-heavy"
:class="{'text-center': !$vuetify.display.mdAndUp }">
<RouterLink
class="link pa-0 text-truncate d-block font-weight-medium mt-1"
class="link pa-0 text-truncate font-weight-medium d-block mt-1"
:to="getItemDetailsLink(currentSeries)">
{{ currentSeries.Name }}
</RouterLink>
</h3>
<div
class="text-caption text-h4 font-weight-medium mt-2"
class="text-h4 font-weight-medium text-caption mt-2"
:class="{ 'text-center': !$vuetify.display.mdAndUp }">
<MediaInfo
:item="item"
Expand All @@ -44,7 +44,7 @@
ends-at />
</div>
<VRow
class="my-4 align-center"
class="align-center my-4"
:class="{
'justify-center': !$vuetify.display.mdAndUp,
'ml-0': $vuetify.display.mdAndUp
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/pages/library/[itemId].vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
</template>
</VChip>
<VDivider
inset

vertical
inset
class="hidden-sm-and-down mx-2" />
<TypeButton
v-if="hasViewTypes"
Expand Down

0 comments on commit 0de6181

Please sign in to comment.