From 76eb063bab8b4f955f07744402431d8d67723a44 Mon Sep 17 00:00:00 2001 From: setthawutttty Date: Wed, 5 Feb 2025 14:51:42 +0700 Subject: [PATCH] NoActive to - --- .../components/detail/GovernmentInformation/05_ActingPos.vue | 4 ++-- .../detail/GovernmentInformation/05_ActingPosHistory.vue | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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",