diff --git a/src/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPos.vue b/src/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPos.vue index 24b8b03a0..83f4b61c2 100644 --- a/src/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPos.vue +++ b/src/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPos.vue @@ -92,7 +92,7 @@ const columns = ref([ headerStyle: "font-size: 14px", style: "font-size: 14px", format(val, row) { - return row.status ? "Active" : "NoActive"; + return row.status ? "Active" : "-"; }, }, ]); @@ -395,7 +395,7 @@ onMounted(() => {
สถานะ
- {{ props.row.status ? "Active" : "NoActive" }} + {{ props.row.status ? "Active" : "-" }}
diff --git a/src/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPosHistory.vue b/src/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPosHistory.vue index cfac36576..ad7084b08 100644 --- a/src/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPosHistory.vue +++ b/src/modules/04_registryPerson/components/detail/GovernmentInformation/05_ActingPosHistory.vue @@ -76,7 +76,7 @@ const columns = ref([ sortable: true, field: "status", format(val, row) { - return row.status ? "Active" : "NoActive"; + return row.status ? "Active" : "-"; }, headerStyle: "font-size: 14px", style: "font-size: 14px",