Skip to content

Commit 070b06d

Browse files
committed
update
1 parent 6d18c67 commit 070b06d

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

CREDITS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Here are people who have contributed to development of json-forms
22
(version numbers in brackets indicate release in which the problem was fixed)
33

4+
Stephen J. Fuhry (fuhrysteve@github)
5+
#20: Add support for date format
6+
(1.3.1)
7+
48
Matheus Graciano (graciano@github)
59
#16: Propperly adding types to buttons
610
(1.2.4)

dist/js/brutusin-json-forms.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,8 @@ if (typeof brutusin === "undefined") {
194194
if (typeof value !== "number") {
195195
value = null;
196196
}
197+
} else if (s.format === "date") {
198+
input.type = "date";
197199
} else if (s.format === "email") {
198200
input.type = "email";
199201
} else if (s.format === "text") {

0 commit comments

Comments
 (0)