Fix desktop translation for browser media source (#27293)
Fix translation for desktoppull/27297/head^2
parent
8c4a67315b
commit
ca1cda4824
|
@ -328,9 +328,13 @@ export class BarMediaPlayer extends SubscribeMixin(LitElement) {
|
|||
</span>
|
||||
${this.narrow
|
||||
? nothing
|
||||
: stateObj
|
||||
? computeStateName(stateObj)
|
||||
: this.entityId}
|
||||
: isBrowser
|
||||
? this.hass.localize(
|
||||
"ui.components.media-browser.web-browser"
|
||||
)
|
||||
: stateObj
|
||||
? computeStateName(stateObj)
|
||||
: this.entityId}
|
||||
<ha-svg-icon
|
||||
slot="end"
|
||||
.path=${mdiChevronDown}
|
||||
|
|
Loading…
Reference in New Issue