commit 360b09dc7ba17d4d3960b8efc5233666fc2be9f3
parent b9735b6ef74f434610f22693ba794bcf163847a5
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date: Sat, 29 May 2021 04:16:12 -0400
add tooltip for ‘<InputCurrency<Entity> name="initial_balance"’
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/frontend/src/paths/instance/reserves/create/CreatePage.tsx b/packages/frontend/src/paths/instance/reserves/create/CreatePage.tsx
@@ -104,7 +104,7 @@ function ViewStep({ step, setCurrentStep, reserve, onBack, submitForm, setReserv
const hasErrors = Object.keys(errors).some(k => (errors as any)[k] !== undefined)
return <Fragment>
<FormProvider<Entity> object={reserve} errors={errors} valueHandler={setReserve}>
- <InputCurrency<Entity> name="initial_balance" label={i18n`Initial balance`} readonly />
+ <InputCurrency<Entity> name="initial_balance" label={i18n`Initial balance`} tooltip={i18n`balance prior to deposit`} readonly />
<Input<Entity> name="exchange_url" label={i18n`Exchange URL`} readonly />
<InputSelector<Entity> name="wire_method" label={i18n`Wire method`} values={wireMethods} placeholder={i18n`Select one wire method`} />
</FormProvider>