Skip to content

v1.2.2 — Fix quick_add unavailable state

Choose a tag to compare

@dadaloop82 dadaloop82 released this 29 May 11:07

Fixed

  • Quick Add text entity shows 'unavailable' — The entity had native_min=1 but its default value is an empty string (""). HA's TextEntity.state raises ValueError when len("") < min(1), causing the entity to appear as unavailable. Fixed by setting native_min=0 to allow the empty-string cleared state after each submission.