diff --git a/src/modules/15_development/components/scholarship/DetailView.vue b/src/modules/15_development/components/scholarship/DetailView.vue index a16e770c5..641f10094 100644 --- a/src/modules/15_development/components/scholarship/DetailView.vue +++ b/src/modules/15_development/components/scholarship/DetailView.vue @@ -289,7 +289,9 @@ async function fetchDataDetail(id: string) { ? data.guarantorCitizenId : "-"; dataGuarantor.name = `${data.guarantorPrefix}${data.guarantorFirstName} ${data.guarantorLastName}`; - dataGuarantor.position = data.position ? data.position : "-"; + dataGuarantor.position = data.guarantorPosition + ? data.guarantorPosition + : "-"; dataGuarantor.type = data.posTypeguarantorName ? data.posTypeguarantorName : "-";