You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for templates in custom_fieldscard's config (Fix #239). This let you use button-card templates with variable card configurations.
entity: light.my_lightcustom_fields:
slider:
card:
type: custom:slider-entity-rowfull_row: truehide_state: truehide_when_off: trueentity: '[[[ return entity.entity_id ]]]'# Will be light.my_light
Support for variables in the templates and config templates (Fix #245)
button_card_templates:
variable_test:
variables:
var_name: "var_value"var_name2: "var_value2"name: '[[[ return variables.var_name ]]]'[...]
- type: custom:button-cardtemplate: variable_testentity: sensor.test# name will be "var_value"
- type: custom:button-cardtemplate: variable_testentity: sensor.testvariables:
var_name: "My local Value"# name will be "My local Value"
Bugfix
Fix #247: iPad OS was double clicking on every button... Rotten Apple!