Skip to content

Commit

Permalink
change min/max attr type (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxence-charriere committed Aug 25, 2020
1 parent 7f8d4da commit 7a55893
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions pkg/app/gen/html.go
Original file line number Diff line number Diff line change
Expand Up @@ -1302,7 +1302,7 @@ var attrs = map[string]attr{
// M:
"max": {
Name: "Max",
Type: "string",
Type: "interface{}",
Doc: "Specifies the maximum value.",
},
"maxlength": {
Expand All @@ -1322,7 +1322,7 @@ var attrs = map[string]attr{
},
"min": {
Name: "Min",
Type: "string",
Type: "interface{}",
Doc: "specifies a minimum value.",
},
"multiple": {
Expand Down
20 changes: 10 additions & 10 deletions pkg/app/html.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions pkg/app/html_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7a55893

Please sign in to comment.