taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 6a0e5cfaa0be82051a49bb8995d49bb218ebb621
parent 69fb5d6a39f01ffc614b103ac774e70e01ce240a
Author: Sebastian <sebasjm@taler-systems.com>
Date:   Fri,  3 Apr 2026 11:19:36 -0300

fix #11333

Diffstat:
Mpackages/merchant-backoffice-ui/src/components/form/InputImage.tsx | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/packages/merchant-backoffice-ui/src/components/form/InputImage.tsx b/packages/merchant-backoffice-ui/src/components/form/InputImage.tsx @@ -90,7 +90,9 @@ export function InputImage<T>({ return; } setSizeError(false); - onChange(toDataSrc(fileList[0]) as T[keyof T]); + toDataSrc(fileList[0]).then(r => { + onChange(r as T[keyof T]); + }) }} /> {help}