Skip to content

Commit

Permalink
Email and number widget fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
robgietema committed Nov 25, 2024
1 parent 3de4d74 commit 6a07150
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const EmailWrapper = (props) => {
label={title}
description={description}
disabled={isDisabled}
type="email"
onChange={(value) => onChange(id, value === '' ? undefined : value)}
ref={ref}
onClick={() => onClick()}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ const NumberWrapper = (props) => {
value={value || ''}
label={title}
description={description}
type="number"
disabled={isDisabled}
placeholder={placeholder}
onChange={(value) => onChange(id, value === '' ? undefined : value)}
Expand Down

0 comments on commit 6a07150

Please sign in to comment.