summaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/components/fields/DateInput.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-11-04 15:17:57 -0300
committerSebastian <sebasjm@gmail.com>2021-11-04 15:18:34 -0300
commitae0a35df2b2934c517954d2a73af4cc6e1734e30 (patch)
tree973b8525a6e7641048a7e31451c7a9cf3274726e /packages/anastasis-webui/src/components/fields/DateInput.tsx
parent5c6f38091068d67f88edda1d776e3c5f86c1a94e (diff)
downloadwallet-core-ae0a35df2b2934c517954d2a73af4cc6e1734e30.tar.gz
wallet-core-ae0a35df2b2934c517954d2a73af4cc6e1734e30.tar.bz2
wallet-core-ae0a35df2b2934c517954d2a73af4cc6e1734e30.zip
async, onInput, and some fixes
Diffstat (limited to 'packages/anastasis-webui/src/components/fields/DateInput.tsx')
-rw-r--r--packages/anastasis-webui/src/components/fields/DateInput.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/anastasis-webui/src/components/fields/DateInput.tsx b/packages/anastasis-webui/src/components/fields/DateInput.tsx
index c406b85d1..3148c953f 100644
--- a/packages/anastasis-webui/src/components/fields/DateInput.tsx
+++ b/packages/anastasis-webui/src/components/fields/DateInput.tsx
@@ -41,7 +41,7 @@ export function DateInput(props: DateInputProps): VNode {
type="text"
class={showError ? 'input is-danger' : 'input'}
value={value}
- onChange={(e) => {
+ onInput={(e) => {
const text = e.currentTarget.value
setDirty(true)
props.bind[1](text);