[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-wallet-core] branch master updated: fix: set extremely low step
From: |
gnunet |
Subject: |
[taler-wallet-core] branch master updated: fix: set extremely low step |
Date: |
Tue, 20 Aug 2024 11:16:11 +0200 |
This is an automated email from the git hooks/post-receive script.
nora-grothoff pushed a commit to branch master
in repository wallet-core.
The following commit(s) were added to refs/heads/master by this push:
new 02fadc83b fix: set extremely low step
02fadc83b is described below
commit 02fadc83b997e4f5175d0dcd91ab925cebb08f47
Author: Nullptrderef <nullptrderef@proton.me>
AuthorDate: Tue Aug 20 11:15:40 2024 +0200
fix: set extremely low step
---
packages/merchant-backoffice-ui/src/components/form/InputCurrency.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/packages/merchant-backoffice-ui/src/components/form/InputCurrency.tsx
b/packages/merchant-backoffice-ui/src/components/form/InputCurrency.tsx
index 11396b88e..ffd3bfd16 100644
--- a/packages/merchant-backoffice-ui/src/components/form/InputCurrency.tsx
+++ b/packages/merchant-backoffice-ui/src/components/form/InputCurrency.tsx
@@ -60,7 +60,7 @@ export function InputCurrency<T>({
expand={expand}
toStr={(v?: AmountString) => v?.split(":")[1] || ""}
fromStr={(v: string) => (!v ? undefined : `${config.currency}:${v}`)}
- inputExtra={{ min: 0 }}
+ inputExtra={{ min: 0, step: 0.001 }}
>
{children}
</InputWithAddon>
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-wallet-core] branch master updated: fix: set extremely low step,
gnunet <=