We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d18c67 commit 070b06dCopy full SHA for 070b06d
CREDITS
@@ -1,6 +1,10 @@
1
Here are people who have contributed to development of json-forms
2
(version numbers in brackets indicate release in which the problem was fixed)
3
4
+Stephen J. Fuhry (fuhrysteve@github)
5
+#20: Add support for date format
6
+(1.3.1)
7
+
8
Matheus Graciano (graciano@github)
9
#16: Propperly adding types to buttons
10
(1.2.4)
dist/js/brutusin-json-forms.js
@@ -194,6 +194,8 @@ if (typeof brutusin === "undefined") {
194
if (typeof value !== "number") {
195
value = null;
196
}
197
+ } else if (s.format === "date") {
198
+ input.type = "date";
199
} else if (s.format === "email") {
200
input.type = "email";
201
} else if (s.format === "text") {
0 commit comments