mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-23 09:16:38 +00:00
Don't show null in hassio network settings (#6323)
This commit is contained in:
parent
f236b76d5c
commit
a674ce36e4
@ -71,7 +71,7 @@ class HassioAddonNetwork extends LitElement {
|
|||||||
<paper-input
|
<paper-input
|
||||||
@value-changed=${this._configChanged}
|
@value-changed=${this._configChanged}
|
||||||
placeholder="disabled"
|
placeholder="disabled"
|
||||||
.value=${String(item.host)}
|
.value=${item.host ? String(item.host) : ""}
|
||||||
.container=${item.container}
|
.container=${item.container}
|
||||||
no-label-float
|
no-label-float
|
||||||
></paper-input>
|
></paper-input>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user