fix: workerSummary

This commit is contained in:
Javier Segarra 2025-03-31 15:02:37 +02:00
parent a937b2d3ac
commit f392502673
1 changed files with 8 additions and 12 deletions

View File

@ -73,21 +73,18 @@ onBeforeMount(async () => {
/> />
</template> </template>
</VnLv> </VnLv>
<VnLv :value="worker.mobileExtension"> <VnLv :label="t('worker.summary.phoneExtension')">
<template #label> <template #value>
{{ t('worker.summary.phoneExtension') }}
<VnLinkPhone :phone-number="worker.mobileExtension" /> <VnLinkPhone :phone-number="worker.mobileExtension" />
</template> </template>
</VnLv> </VnLv>
<VnLv :value="worker.phone"> <VnLv :label="t('worker.summary.entPhone')">
<template #label> <template #value>
{{ t('worker.summary.entPhone') }}
<VnLinkPhone :phone-number="worker.phone" /> <VnLinkPhone :phone-number="worker.phone" />
</template> </template>
</VnLv> </VnLv>
<VnLv :value="advancedSummary?.client?.phone"> <VnLv :label="t('worker.summary.personalPhone')">
<template #label> <template #value>
{{ t('worker.summary.personalPhone') }}
<VnLinkPhone <VnLinkPhone
:phone-number="advancedSummary?.client?.phone" :phone-number="advancedSummary?.client?.phone"
/> />
@ -147,9 +144,8 @@ onBeforeMount(async () => {
</span> </span>
</template> </template>
</VnLv> </VnLv>
<VnLv :value="worker?.sip?.extension"> <VnLv :label="t('worker.summary.sipExtension')">
<template #label> <template #value>
{{ t('worker.summary.sipExtension') }}
<VnLinkPhone :phone-number="worker?.sip?.extension" /> <VnLinkPhone :phone-number="worker?.sip?.extension" />
</template> </template>
</VnLv> </VnLv>