mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-25 18:26:35 +00:00
Fix multiline select text in zwave info (#17564)
This commit is contained in:
parent
aa85b87e11
commit
c561df70dd
@ -93,16 +93,21 @@ export class HaDeviceInfoZWaveJS extends SubscribeMixin(LitElement) {
|
||||
"ui.panel.config.zwave_js.device_info.zwave_info"
|
||||
)}
|
||||
>
|
||||
<div>
|
||||
${this._multipleConfigEntries
|
||||
? html`
|
||||
<div>
|
||||
${this.hass.localize("ui.panel.config.zwave_js.common.source")}:
|
||||
${this.hass.localize(
|
||||
"ui.panel.config.zwave_js.common.source"
|
||||
)}:
|
||||
${this._configEntry!.title}
|
||||
</div>
|
||||
`
|
||||
: ""}
|
||||
: nothing}
|
||||
<div>
|
||||
${this.hass.localize("ui.panel.config.zwave_js.device_info.node_id")}:
|
||||
${this.hass.localize(
|
||||
"ui.panel.config.zwave_js.device_info.node_id"
|
||||
)}:
|
||||
${this._node.node_id}
|
||||
</div>
|
||||
${!this._node.is_controller_node
|
||||
@ -156,7 +161,8 @@ export class HaDeviceInfoZWaveJS extends SubscribeMixin(LitElement) {
|
||||
: this.hass.localize("ui.common.no")}
|
||||
</div>
|
||||
`
|
||||
: ""}
|
||||
: nothing}
|
||||
</div>
|
||||
</ha-expansion-panel>
|
||||
`;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user