Mejoras sección pedidos #79

Merged
jsegarra merged 7 commits from wbuezas/hedera-web-mindshore:feature/MejorasPedidos into 4922-vueMigration 2024-08-23 12:05:15 +00:00
1 changed files with 10 additions and 2 deletions
Showing only changes of commit 462a8a3cf8 - Show all commits

View File

@ -54,10 +54,17 @@ const onConfirmPay = async () => {
<Teleport :to="$actions">
<div class="balance">
<span class="label">{{ t('balance') }}</span>
<span class="amount" :class="{ negative: debt < 0 }">
<span
class="amount"
:class="{ negative: debt < 0 }"
>
{{ currency(debt || 0) }}
</span>
<QIcon name="info" class="info" size="sm">
<QIcon
name="info"
class="info"
size="sm"
>
<QTooltip max-width="450px">
{{ t('paymentInfo') }}
</QTooltip>
@ -134,6 +141,7 @@ const onConfirmPay = async () => {
class="full-width"
type="number"
min="0"
:max="debt * -1"
/>
</template>
</VnConfirm>