diff --git a/src/pages/05_quotation/QuotationForm.vue b/src/pages/05_quotation/QuotationForm.vue index 7e23d7b0..3322cf0d 100644 --- a/src/pages/05_quotation/QuotationForm.vue +++ b/src/pages/05_quotation/QuotationForm.vue @@ -164,7 +164,9 @@ const selectedWorkerItem = computed(() => { employeeName: locale.value === Lang.English ? `${e.firstNameEN} ${e.lastNameEN}` - : `${e.firstName} ${e.lastName}`, + : e.firstName + ? `${e.firstName} ${e.lastName}` + : `${e.firstNameEN} ${e.lastNameEN}`, birthDate: dateFormatJS({ date: e.dateOfBirth }), gender: e.gender, age: calculateAge(e.dateOfBirth),