Skip to content

Commit 875b227

Browse files
committed
Fix station without name text
1 parent de906d2 commit 875b227

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/station-card.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const logoError = ref(false);
4040
radio
4141
</div>
4242
<div class="card__name">
43-
{{ data.name.trim() ? data.name.trim() : $t('withoutName') }}
43+
{{ data.name.trim() ? data.name.trim() : $t('station.withoutName') }}
4444
<span class="material-symbols-rounded" v-if="data.hasExtendedInfo"
4545
>verified</span
4646
>

src/layout/player-bar-fullscreen.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ watch(station, () => {
2626
<div class="material-symbols-rounded fullscreen__image" v-else>radio</div>
2727
<div class="player-bar-fullscreen__text">
2828
<div class="player-bar-fullscreen__title">
29-
{{ playerStore.station!.name.trim() ?? $t('withoutName') }}
29+
{{ playerStore.station!.name.trim() ?? $t('station.withoutName') }}
3030
</div>
3131
<div
3232
class="player-bar-fullscreen__description"

src/layout/player-bar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ watch(station, () => {
2424
/>
2525
<div class="material-symbols-rounded player-bar__image" v-else>radio</div>
2626
<div class="player-bar__title">
27-
{{ playerStore.station.name.trim() ?? $t('withoutName') }}
27+
{{ playerStore.station.name.trim() ?? $t('station.withoutName') }}
2828
</div>
2929
<div
3030
class="player-bar__description"

0 commit comments

Comments
 (0)