1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-05-08 17:28:46 +01:00

Use "any" as step for add-on configuration floats (#16478)

This commit is contained in:
Joakim Sørensen
2023-05-09 12:22:17 +02:00
committed by GitHub
parent ccf3238318
commit ec36d4a381
@@ -140,7 +140,12 @@ class HassioAddonConfig extends LitElement {
? {
name: entry.name,
required: entry.required,
selector: { number: { mode: "box" } },
selector: {
number: {
mode: "box",
step: entry.type === "float" ? "any" : undefined,
},
},
}
: entry
)