diff options
author | Sebastian <sebasjm@gmail.com> | 2023-03-13 00:24:28 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-03-13 00:24:28 -0300 |
commit | 3267f56dc3de054a7dbdd6cd83305b92cf16bd61 (patch) | |
tree | 5f3b77915e5bc9af05bfeed30436e70b372e3d21 /packages/merchant-backoffice-ui/src/components/form | |
parent | a1af7945d17d40b33aeaf3894ed348b083f98f9a (diff) |
show/hide key
Diffstat (limited to 'packages/merchant-backoffice-ui/src/components/form')
-rw-r--r-- | packages/merchant-backoffice-ui/src/components/form/InputWithAddon.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/merchant-backoffice-ui/src/components/form/InputWithAddon.tsx b/packages/merchant-backoffice-ui/src/components/form/InputWithAddon.tsx index e5118c722..dbf4e2409 100644 --- a/packages/merchant-backoffice-ui/src/components/form/InputWithAddon.tsx +++ b/packages/merchant-backoffice-ui/src/components/form/InputWithAddon.tsx @@ -23,7 +23,7 @@ import { InputProps, useField } from "./useField.js"; export interface Props<T> extends InputProps<T> { expand?: boolean; - inputType?: "text" | "number"; + inputType?: "text" | "number" | "password"; addonBefore?: ComponentChildren; addonAfter?: ComponentChildren; toStr?: (v?: any) => string; |