0
0
Fork 0

fix: refs #6943 prevent undefined

This commit is contained in:
Jorge Penadés 2024-07-04 17:05:52 +02:00
parent 3585f651b8
commit ccf1603d02
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ const columns = computed(() => [
},
{
align: 'left',
field: (value) => value.worker.user.name,
field: (value) => value?.worker?.user?.name,
label: t('Employee'),
name: 'employee',
},