From bf50752a1651300b6163096c066d275ecdd9d1a6 Mon Sep 17 00:00:00 2001 From: Shu Muto Date: Thu, 15 Jun 2017 16:21:14 +0900 Subject: [PATCH] Enable to set step attribute for number input angular-schema-form doesn't apply "step" attribute for number type input. To increase the number properly in the form by form control, "step" attribute should be applied to number type input. e.g.) if set 0.1 to step, form control will be increase the number as 0.1->0.2->0.3... or decrease it as 1->0.9->0.8... . This patch fixes it. Change-Id: Ie837b605f281001ae209e743ea50b25a091dd752 Closes-Bug: #1698086 --- horizon/static/framework/widgets/form/fields/default.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/horizon/static/framework/widgets/form/fields/default.html b/horizon/static/framework/widgets/form/fields/default.html index 78c9f52e31..f4fc375e4f 100644 --- a/horizon/static/framework/widgets/form/fields/default.html +++ b/horizon/static/framework/widgets/form/fields/default.html @@ -8,7 +8,7 @@