Merge pull request 'fix: update phone number VnTable.Card and CustomerBalance checkbox' (!1696) from hotfix_customer_minorchanges into master
gitea/salix-front/pipeline/head This commit looks good Details

Reviewed-on: #1696
Reviewed-by: Javi Gallego <jgallego@verdnatura.es>
This commit is contained in:
Javier Segarra 2025-04-10 11:22:38 +00:00
commit 5e0f0caa2e
2 changed files with 6 additions and 8 deletions

View File

@ -131,6 +131,7 @@ const columns = computed(() => [
name: 'isConciliate', name: 'isConciliate',
label: t('Conciliated'), label: t('Conciliated'),
cardVisible: true, cardVisible: true,
component: 'checkbox',
}, },
{ {
align: 'left', align: 'left',

View File

@ -111,14 +111,11 @@ const columns = computed(() => [
component: 'number', component: 'number',
}, },
columnField: { columnField: {
component: null, component: markRaw(VnLinkPhone),
after: { attrs: ({ model }) => {
component: markRaw(VnLinkPhone), return {
attrs: ({ model }) => { 'phone-number': model,
return { };
'phone-number': model,
};
},
}, },
}, },
}, },