From e010b53061856f59b7aeaba33f13b6478197892f Mon Sep 17 00:00:00 2001 From: waruneeauy Date: Mon, 21 Oct 2024 13:15:49 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=E0=B8=84=E0=B8=B3?= =?UTF-8?q?=E0=B8=9C=E0=B8=B4=E0=B8=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/04_registryPerson/stores/RequestEdit.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/04_registryPerson/stores/RequestEdit.ts b/src/modules/04_registryPerson/stores/RequestEdit.ts index 32e889d20..d536443cb 100644 --- a/src/modules/04_registryPerson/stores/RequestEdit.ts +++ b/src/modules/04_registryPerson/stores/RequestEdit.ts @@ -17,7 +17,7 @@ export const useRequestEditStore = defineStore("requestEditStore", () => { { id: "", name: "ทั้งหมด" }, { id: "PENDING", name: "รอดำเนินการ" }, { id: "COMPLETE", name: "ดำเนินการแก้ไขแล้ว" }, - { id: "REJECT", name: "ไม่อนุมัตการแก้ไข" }, + { id: "REJECT", name: "ไม่อนุมัติการแก้ไข" }, ]); const optionStatusIDP = ref([ @@ -34,7 +34,7 @@ export const useRequestEditStore = defineStore("requestEditStore", () => { case "COMPLETE": return "ดำเนินการแก้ไขแล้ว"; case "REJECT": - return "ไม่อนุมัตการแก้ไข"; + return "ไม่อนุมัติการแก้ไข"; default: return "-"; }