diff --git a/admin/src/common/components/TextBox/TextBox.jsx b/admin/src/common/components/TextBox/TextBox.jsx index e270e51..9e4d76f 100644 --- a/admin/src/common/components/TextBox/TextBox.jsx +++ b/admin/src/common/components/TextBox/TextBox.jsx @@ -7,7 +7,8 @@ export const TextBox = (props) => { return (
+ onChange={props.onUpdate} type={props.type || "text"} autoComplete={props.autoComplete} + data-form-type={props.autoComplete === "off" ? "other" : ""} defaultValue={props.default}/> {props.icon && }
);