summaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/components/fields/TextInput.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/anastasis-webui/src/components/fields/TextInput.tsx')
-rw-r--r--packages/anastasis-webui/src/components/fields/TextInput.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/anastasis-webui/src/components/fields/TextInput.tsx b/packages/anastasis-webui/src/components/fields/TextInput.tsx
index 4bb785cd3..c093689c5 100644
--- a/packages/anastasis-webui/src/components/fields/TextInput.tsx
+++ b/packages/anastasis-webui/src/components/fields/TextInput.tsx
@@ -32,7 +32,7 @@ export function TextInput(props: TextInputProps): VNode {
value={value}
placeholder={props.placeholder}
class={showError ? 'input is-danger' : 'input'}
- onChange={(e) => {setDirty(true); props.bind[1]((e.target as HTMLInputElement).value)}}
+ onInput={(e) => {setDirty(true); props.bind[1]((e.target as HTMLInputElement).value)}}
ref={inputRef}
style={{ display: "block" }} />
</div>