The button is still shown if the auto submit is enabled and the Hide submit button is checked. No idea why.

Comments

hass created an issue. See original summary.

hass’s picture

Version: 7.x-3.x-dev » 7.x-3.16-rc1
hass’s picture

I see the CSS class js-hide is added, but there is no CSS for it!?

hass’s picture

Status: Active » Closed (works as designed)

That is a theme issue. Form theming overrides system.base.css.

html.js .js-hide {
  display: none;
}

This is safer

html.js input.js-hide {
  display: none;
}