Changes
This commit is contained in:
@@ -1016,7 +1016,7 @@ const setRowData = (row) => {
|
||||
variant="outline"
|
||||
class="w-full"
|
||||
>
|
||||
{{row.customer ?customers.find(i => i.id === row.customer).name : "Kein Kunde ausgewählt"}}
|
||||
{{itemInfo.customer ? customers.find(i => i.id === iteminfo.customer).name : "Kein Kunde ausgewählt"}}
|
||||
|
||||
<UIcon name="i-heroicons-chevron-right-20-solid" class="w-5 h-5 transition-transform text-gray-400 dark:text-gray-500" :class="['transform rotate-90']" />
|
||||
</UButton>
|
||||
@@ -1040,8 +1040,8 @@ const setRowData = (row) => {
|
||||
title="Info"
|
||||
>
|
||||
<template #description>
|
||||
Kundennr: {{customers.find(i => i.id === row.customer).customerNumber}}<br>
|
||||
Typ: {{customers.find(i => i.id === row.customer).isCompany ? 'Firma' : 'Privat'}}<br>
|
||||
Kundennr: {{customers.find(i => i.id === itemInfo.customer).customerNumber}}<br>
|
||||
Typ: {{customers.find(i => i.id === itemInfo.customer).isCompany ? 'Firma' : 'Privat'}}<br>
|
||||
Notizen: <span class="truncate">{{customers.find(i => i.id === row.customer).notes}}</span>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user