diff options
Diffstat (limited to 'components')
| -rw-r--r-- | components/ui.tsx | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/components/ui.tsx b/components/ui.tsx index 3fb3c86..8f16340 100644 --- a/components/ui.tsx +++ b/components/ui.tsx @@ -95,6 +95,7 @@ export function Input(props: {  	max?: number;  	value?: string|number;  	dark?: boolean; +	autocomplete?: string;  }) {  	return <input  	id={props.id} @@ -104,6 +105,7 @@ export function Input(props: {  	spellCheck={false}  	defaultValue={props.value ? String(props.value) : ""}  	className={props.dark ? "dark" : "light"} +	autoComplete={props.autocomplete}  	style={{  		padding: 12,  		border: 0, |