forked from verdnatura/salix-front
Add tooltip to Beneficiary input in SupplierAccounts
This commit is contained in:
parent
ae4c80f45c
commit
2f67fef562
|
@ -135,7 +135,17 @@ onMounted(() => {
|
||||||
<VnInput
|
<VnInput
|
||||||
:label="t('supplier.accounts.beneficiary')"
|
:label="t('supplier.accounts.beneficiary')"
|
||||||
v-model="row.beneficiary"
|
v-model="row.beneficiary"
|
||||||
/>
|
>
|
||||||
|
<template #append>
|
||||||
|
<QIcon name="info" class="cursor-pointer">
|
||||||
|
<QTooltip>{{
|
||||||
|
t(
|
||||||
|
'Name of the bank account holder if different from the provider'
|
||||||
|
)
|
||||||
|
}}</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
</template>
|
||||||
|
</VnInput>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-1 row justify-center items-center">
|
<div class="col-1 row justify-center items-center">
|
||||||
<QIcon
|
<QIcon
|
||||||
|
@ -174,4 +184,5 @@ onMounted(() => {
|
||||||
Do you want to change the pay method to wire transfer?: ¿Quieres modificar la forma de pago a transferencia?
|
Do you want to change the pay method to wire transfer?: ¿Quieres modificar la forma de pago a transferencia?
|
||||||
Add account: Añadir cuenta
|
Add account: Añadir cuenta
|
||||||
Remove account: Remover cuenta
|
Remove account: Remover cuenta
|
||||||
|
Name of the bank account holder if different from the provider: Nombre del titular de la cuenta bancaria en caso de ser diferente del proveedor
|
||||||
</i18n>
|
</i18n>
|
||||||
|
|
Loading…
Reference in New Issue