Skip to content

Commit

Permalink
Allow negative calibration factor in mold_indicator (#127133)
Browse files Browse the repository at this point in the history
  • Loading branch information
gjohansson-ST authored Sep 30, 2024
1 parent 053ff33 commit 05288da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/mold_indicator/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async def validate_duplicate(
DATA_SCHEMA_OPTIONS = vol.Schema(
{
vol.Required(CONF_CALIBRATION_FACTOR): NumberSelector(
NumberSelectorConfig(min=0, step="any", mode=NumberSelectorMode.BOX)
NumberSelectorConfig(step=0.1, mode=NumberSelectorMode.BOX)
)
}
)
Expand Down

0 comments on commit 05288da

Please sign in to comment.