minor changes
gitea/salix-front/pipeline/head There was a failure building this commit Details

This commit is contained in:
Pau 2022-12-20 10:25:13 +01:00
parent 7d0cb47405
commit 9ed9e03b42
1 changed files with 4 additions and 2 deletions

View File

@ -143,13 +143,15 @@ function openDescriptorDialog(id) {
<q-item>
<q-item-section>
<q-item-label caption>{{ t('worker.summary.entPhone') }} </q-item-label>
<q-item-label>{{ worker.phone }}</q-item-label>
<q-item-label>{{ worker.phone == '' ? worker.phone : '-' }}</q-item-label>
</q-item-section>
</q-item>
<q-item>
<q-item-section>
<q-item-label caption>{{ t('worker.summary.personalPhone') }} </q-item-label>
<q-item-label>{{ worker.client.phone }}</q-item-label>
<q-item-label>{{
worker.client.phone == '' ? worker.client.phone : '-'
}}</q-item-label>
</q-item-section>
</q-item>
</q-list>