#YAML / Config not saving?

1 messages · Page 1 of 1 (latest)

rose tide
#

As title states, saving changed to the manual/yaml editor isn't working.

I first noticed the issue with a Markdown card where everything, then saved wouldn't be applied. I'd open the card back up, and the config was blank/empty.

I never resolved that, so I moved on to other cards. Now having the same issue with button-cards.

I'm adding this script to customize it:
type: custom:button-card show_state: false 3 name: button card tap_action: action: none custom fields: styles: card: - padding: 22px - align-self: start - width: 1920px - height: 1080px - opacity: 1 - background-color: transparent custom_fields: name: - justify-self: start - align-self: start - font-size: 24px - font-weight: 500 - color: white

(It's formatted like the screenshot attached), I hit Save, it reports back its successful, but nothing has changed. I edit the card again and it's default/blank, nothing has changed.

loud canopy
#

The red bar on the side is implying that your yaml is not valid. Unparseable yaml can't be saved.

#

Perhaps the error messaging could be improved.

#

tap_action: action: none is not valid

#

should be:

tap_action:
  action: none
rose tide