mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 07:17:14 +00:00
HotFix - Needs to pipe integer to delay (#710)
Using the delay template as specified in the documentation worked when the delay template was being implemented, but input_slider is now floating point - update documentation to pipe the float into an integer.
This commit is contained in:
parent
ee103d6746
commit
f78572b4cf
@ -72,7 +72,7 @@ delay:
|
||||
```yaml
|
||||
# Waits however many minutes input_slider.minute_delay is set to
|
||||
# Valid formats include HH:MM and HH:MM:SS
|
||||
delay: {% raw %}'00:{{ input_slider.minute_delay }}:00'{% endraw %}
|
||||
delay: {% raw %}'00:{{ input_slider.minute_delay | int }}:00'{% endraw %}
|
||||
```
|
||||
|
||||
#### {% linkable_title Fire an Event %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user