1
0
Fork 0
mirror of synced 2024-06-26 18:20:43 +12:00

fix: ui float input field

This commit is contained in:
Torsten Dittmann 2022-03-09 22:13:36 +01:00 committed by GitHub
parent 9a1862e4a2
commit fa5cba5ac3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -110,7 +110,7 @@ $logs = $this->getParam('logs', null);
<template x-if="attr.type === 'double'">
<input
type="number"
step="0.01"
step="any"
:placeholder="attr.default"
:name="attr.key"
:required="attr.required"
@ -203,7 +203,7 @@ $logs = $this->getParam('logs', null);
<template x-if="attr.type === 'double'">
<input
type="number"
step="0.01"
step="any"
:placeholder="attr.default"
:name="attr.key"
:required="attr.required"