merchant-backoffice

ZZZ: Inactive/Deprecated
Log | Files | Refs | Submodules | README

commit 95e72cf44c56dd959651c877e08c7b1002695b45
parent bb46fec4a792387d4734c1b6bc2705d32b067ff1
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date:   Sat, 29 May 2021 03:35:25 -0400

add tooltip for ‘<Input<State> name="next_url"’

Diffstat:
Mpackages/frontend/src/paths/instance/reserves/list/AutorizeTipModal.tsx | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/packages/frontend/src/paths/instance/reserves/list/AutorizeTipModal.tsx b/packages/frontend/src/paths/instance/reserves/list/AutorizeTipModal.tsx @@ -71,9 +71,9 @@ export function AuthorizeTipModal({ onCancel, onConfirm, tipAuthorized }: Author return <ConfirmModal description="tip" active onCancel={onCancel} disabled={hasErrors} onConfirm={validateAndConfirm}> <FormProvider<State> errors={errors} object={form} valueHandler={setValue} > - <InputCurrency<State> name="amount" label={i18n`Amount`} tooltip={i18n`amount of tip`} /> - <Input<State> name="justification" label={i18n`Justification`} inputType="multiline" tooltip={i18n`reason for the tip`} /> - <Input<State> name="next_url" label={i18n`URL after tip`} /> + <InputCurrency<State> name="amount" label={i18n`Amount`} tooltip={i18n`amount of tip`}/> + <Input<State> name="justification" label={i18n`Justification`} inputType="multiline" tooltip={i18n`reason for the tip`}/> + <Input<State> name="next_url" label={i18n`URL after tip`} tooltip={i18n`URL to visit after tip payment`} /> </FormProvider> </ConfirmModal>