Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! fixup! fixup! Tweak devices status card
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris-V committed Jul 14, 2024
1 parent b759b97 commit 7d7ec76
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dashboards/views/network.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,22 +70,22 @@
entities:
- type: "custom:template-entity-row"
entity: "binary_sensor.ground_floor_heat_pump_status"
secondary: "{{ time_since('sensor.ground_floor_heat_pump_uptime', 1) }}"
active: "{{ is_state(config.entity , 'on') }}"
secondary: "{{ states('sensor.ground_floor_heat_pump_uptime') | time_since(1) }}"
active: "{{ is_state(config.entity, 'on') }}"
state: "{{ state_translated(config.entity) }}"
- type: "custom:template-entity-row"
entity: "binary_sensor.kitchen_proxy_status"
secondary: "{{ ('sensor.kitchen_proxy_uptime', 1) }}"
secondary: "{{ states('sensor.kitchen_proxy_uptime') | time_since(1) }}"
active: "{{ is_state(config.entity, 'on') }}"
state: "{{ state_translated(config.entity) }}"
- type: "custom:template-entity-row"
entity: "binary_sensor.lounge_proxy_status"
secondary: "{{ time_since('sensor.lounge_proxy_uptime', 1) }}"
secondary: "{{ states('sensor.lounge_proxy_uptime') | time_since(1) }}"
active: "{{ is_state(config.entity, 'on') }}"
state: "{{ state_translated(config.entity) }}"
- type: "custom:template-entity-row"
entity: "binary_sensor.office_proxy_status"
secondary: "{{ time_since('sensor.office_proxy_uptime', 1) }}"
secondary: "{{ states('sensor.office_proxy_uptime') | time_since(1) }}"
active: "{{ is_state(config.entity, 'on') }}"
state: "{{ state_translated(config.entity) }}"

Expand Down

0 comments on commit 7d7ec76

Please sign in to comment.