mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-24 09:46:36 +00:00
Use "any" as step for add-on configuration floats (#16478)
This commit is contained in:
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
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user