Skip to content

Commit

Permalink
chore(html): type property does not work in the textbox
Browse files Browse the repository at this point in the history
  • Loading branch information
JoomFX committed Jul 31, 2024
1 parent 1af4f1a commit 1e88760
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/html/src/textbox/textbox.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export const Textbox = (
prefix,
suffix,
separators = defaultProps.separators,
type,
value,
placeholder,
size,
Expand Down Expand Up @@ -105,7 +106,7 @@ export const Textbox = (
{separators && <InputSeparator/>}
</>
}
<InputInnerInput placeholder={placeholder} value={value} />
<InputInnerInput placeholder={placeholder} value={value} type={type} />
<InputValidationIcon
valid={valid}
invalid={invalid}
Expand Down

0 comments on commit 1e88760

Please sign in to comment.