From 7632c2374394935ffca131e301f9cb82205d88b8 Mon Sep 17 00:00:00 2001 From: setthawutttty Date: Wed, 5 Feb 2025 14:51:03 +0700 Subject: [PATCH] NoActive to - --- src/modules/10_registry/02_Government/05_Actposition.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/10_registry/02_Government/05_Actposition.vue b/src/modules/10_registry/02_Government/05_Actposition.vue index 0d949fa..5d818cb 100644 --- a/src/modules/10_registry/02_Government/05_Actposition.vue +++ b/src/modules/10_registry/02_Government/05_Actposition.vue @@ -83,7 +83,7 @@ const columns = ref([ headerStyle: "font-size: 14px", style: "font-size: 14px", format(val, row) { - return row.status ? "Active" : "NoActive"; + return row.status ? "Active" : "-"; }, }, ]); @@ -144,7 +144,7 @@ const columnsHistory = 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",