diff --git a/client/components/app/MediaPlayerContainer.vue b/client/components/app/MediaPlayerContainer.vue index 3c4b1d35..e00d4554 100644 --- a/client/components/app/MediaPlayerContainer.vue +++ b/client/components/app/MediaPlayerContainer.vue @@ -6,9 +6,12 @@
- - {{ title }} - +
+ + {{ title }} + + +
person
@@ -18,7 +21,6 @@ {{ author.name }}
{{ $strings.LabelUnknown }}
-
@@ -136,7 +138,7 @@ export default { return this.streamLibraryItem?.mediaType === 'music' }, isExplicit() { - return this.mediaMetadata.explicit || false + return !!this.mediaMetadata.explicit }, mediaMetadata() { return this.media.metadata || {} diff --git a/client/components/cards/BookMatchCard.vue b/client/components/cards/BookMatchCard.vue index f2c15280..cbe4f7a4 100644 --- a/client/components/cards/BookMatchCard.vue +++ b/client/components/cards/BookMatchCard.vue @@ -29,7 +29,7 @@

-
{{ book.title }}
+
{{ book.title }}

by {{ book.author }}

{{ book.genres.join(', ') }}

diff --git a/client/components/cards/LazyBookCard.vue b/client/components/cards/LazyBookCard.vue index 1ab61dd6..0bfac85f 100644 --- a/client/components/cards/LazyBookCard.vue +++ b/client/components/cards/LazyBookCard.vue @@ -10,7 +10,7 @@

{{ displayTitle }}

- +

{{ displayLineTwo || ' ' }}

diff --git a/client/components/tables/podcast/DownloadQueueTable.vue b/client/components/tables/podcast/DownloadQueueTable.vue index 04e631e2..d4d1e710 100644 --- a/client/components/tables/podcast/DownloadQueueTable.vue +++ b/client/components/tables/podcast/DownloadQueueTable.vue @@ -20,7 +20,7 @@
{{ downloadQueued.podcastTitle }} - +
diff --git a/client/components/widgets/ExplicitIndicator.vue b/client/components/widgets/ExplicitIndicator.vue index 6a03d925..601b9be4 100644 --- a/client/components/widgets/ExplicitIndicator.vue +++ b/client/components/widgets/ExplicitIndicator.vue @@ -1,5 +1,5 @@