Skip to content

Commit

Permalink
Remove version check (home-assistant#6984)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored Sep 15, 2020
1 parent 239f5f1 commit 1986215
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions hassio/src/system/hassio-host-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import {
TemplateResult,
} from "lit-element";
import memoizeOne from "memoize-one";
import { atLeastVersion } from "../../../src/common/config/version";
import "../../../src/components/buttons/ha-progress-button";
import "../../../src/components/ha-button-menu";
import "../../../src/components/ha-card";
Expand Down Expand Up @@ -85,8 +84,7 @@ class HassioHostInfo extends LitElement {
</mwc-button>
</ha-settings-row>`
: ""}
${this.hostInfo.features.includes("network") &&
atLeastVersion(this.hass.config.version, 0, 115)
${this.hostInfo.features.includes("network")
? html` <ha-settings-row>
<span slot="heading">
IP address
Expand Down

0 comments on commit 1986215

Please sign in to comment.