Skip to content

Commit 0de6181

Browse files
authored
style: automatic eslint fix
Signed-off-by: GitHub <noreply@github.com>
1 parent 84fddbd commit 0de6181

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

frontend/src/components/Dialogs/ConfirmDialog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<VDivider />
1919
<VCardText
20-
class="d-flex text-center align-center justify-center">
20+
class="text-center d-flex align-center justify-center">
2121
<JSafeHtml :html="innerHtml" />
2222
</VCardText>
2323
<VCardActions class="align-center justify-center">

frontend/src/components/Playback/TrackList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
:to="getItemDetailsLink(artist, 'MusicArtist')"
9191
custom>
9292
<span
93-
class="link text--secondary"
93+
class="text--secondary link"
9494
@click="navigate">
9595
{{ artist.Name }}
9696
</span>

frontend/src/pages/genre/[itemId].vue

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,11 @@
3232
<SkeletonCard
3333
v-for="n in 24"
3434
:key="n"
35-
boilerplate
36-
text />
35+
36+
text
37+
boilerplate />
3738
</VCol>
38-
<div class="empty-message text-center">
39+
<div class="text-center empty-message">
3940
<h1 class="text-h5">
4041
{{ $t('libraryEmpty') }}
4142
</h1>

frontend/src/pages/item/[itemId].vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
class="text-h6 font-weight-heavy"
2929
:class="{'text-center': !$vuetify.display.mdAndUp }">
3030
<RouterLink
31-
class="link pa-0 text-truncate d-block font-weight-medium mt-1"
31+
class="link pa-0 text-truncate font-weight-medium d-block mt-1"
3232
:to="getItemDetailsLink(currentSeries)">
3333
{{ currentSeries.Name }}
3434
</RouterLink>
3535
</h3>
3636
<div
37-
class="text-caption text-h4 font-weight-medium mt-2"
37+
class="text-h4 font-weight-medium text-caption mt-2"
3838
:class="{ 'text-center': !$vuetify.display.mdAndUp }">
3939
<MediaInfo
4040
:item="item"
@@ -44,7 +44,7 @@
4444
ends-at />
4545
</div>
4646
<VRow
47-
class="my-4 align-center"
47+
class="align-center my-4"
4848
:class="{
4949
'justify-center': !$vuetify.display.mdAndUp,
5050
'ml-0': $vuetify.display.mdAndUp

frontend/src/pages/library/[itemId].vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@
1717
</template>
1818
</VChip>
1919
<VDivider
20-
inset
20+
2121
vertical
22+
inset
2223
class="hidden-sm-and-down mx-2" />
2324
<TypeButton
2425
v-if="hasViewTypes"

0 commit comments

Comments
 (0)