diff --git a/CHANGES.md b/CHANGES.md index fc0ef3ae83..84f54727ac 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -9,6 +9,7 @@ - Fixed output of /v1/health/queue/certificates returning wrong data - Fixed network calculation for uploaded files +- Fixed a UI bug preventing float values in numeric fields ## Security diff --git a/app/views/console/database/collection.phtml b/app/views/console/database/collection.phtml index c1e03402ce..8c6c75754d 100644 --- a/app/views/console/database/collection.phtml +++ b/app/views/console/database/collection.phtml @@ -457,7 +457,7 @@ $rules = $collection->getAttribute('rules', []); diff --git a/app/views/console/database/rules/numeric.phtml b/app/views/console/database/rules/numeric.phtml index 2f74331cf9..1a7774f427 100644 --- a/app/views/console/database/rules/numeric.phtml +++ b/app/views/console/database/rules/numeric.phtml @@ -4,4 +4,4 @@ $required = $this->getParam('required', ''); $namespace = $this->getParam('namespace', ''); ?> - required class="margin-bottom-no" /> \ No newline at end of file + required class="margin-bottom-no" step=any /> \ No newline at end of file diff --git a/app/views/console/settings/index.phtml b/app/views/console/settings/index.phtml index e9e91d59c7..f38b91648e 100644 --- a/app/views/console/settings/index.phtml +++ b/app/views/console/settings/index.phtml @@ -27,8 +27,10 @@ $customDomainsTarget = $this->getParam('customDomainsTarget', false);