Don't show null in hassio network settings (#6323)

This commit is contained in:
Bram Kragten 2020-07-05 17:03:46 +02:00 committed by GitHub
parent f236b76d5c
commit a674ce36e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,7 +71,7 @@ class HassioAddonNetwork extends LitElement {
<paper-input
@value-changed=${this._configChanged}
placeholder="disabled"
.value=${String(item.host)}
.value=${item.host ? String(item.host) : ""}
.container=${item.container}
no-label-float
></paper-input>