We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The documentation for the services markdown is wrong, please adjust.
In documentation
_type: markdown content: >- <h2 class="some"> <ha-icon icon='mdi:shield-half-full'></ha-icon> Watchman report</h2> <h3> Missing Services: {{ states.sensor.watchman_missing_services.state }} </h3> {%- for item in state_attr("sensor.watchman_missing_services", "services") %} <hr><table><tr> <td> <ha-icon icon='mdi:cloud-alert'></ha-icon> {{ item.id }} <a title="{{item.occurrences}}">{{item.occurrences.split('/')[-1].split(':')[0]}}</a> </td></tr></table> {%- endfor %}_
"services" should be "entities" to work:
_type: markdown content: >- <h2 class="some"> <ha-icon icon='mdi:shield-half-full'></ha-icon> Watchman report</h2> <h3> Missing Services: {{ states.sensor.watchman_missing_services.state }} </h3> {%- for item in state_attr("sensor.watchman_missing_services", "entities") %} <hr><table><tr> <td> <ha-icon icon='mdi:cloud-alert'></ha-icon> {{ item.id }} <a title="{{item.occurrences}}">{{item.occurrences.split('/')[-1].split(':')[0]}}</a> </td></tr></table> {%- endfor %}_
The text was updated successfully, but these errors were encountered:
This issue is the THIRD about the same. This is what happens when people do not use "search" before posting.
Sorry, something went wrong.
Should be fixed together with #52 and #93 in 0.6.2
No branches or pull requests
The documentation for the services markdown is wrong, please adjust.
In documentation
"services" should be "entities" to work:
The text was updated successfully, but these errors were encountered: