From 8d74bafb4f8087c5cd69b402bfa04a4d7c114bf4 Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Tue, 24 Oct 2023 11:53:38 +0700 Subject: [PATCH 1/3] =?UTF-8?q?=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88?= =?UTF-8?q?=E0=B8=A1=20ID=20=E0=B8=A3=E0=B8=B2=E0=B8=A2=E0=B8=81=E0=B8=B2?= =?UTF-8?q?=E0=B8=A3=E0=B8=A5=E0=B8=87=E0=B9=80=E0=B8=A7=E0=B8=A5=E0=B8=B2?= =?UTF-8?q?=E0=B8=9B=E0=B8=8F=E0=B8=B4=E0=B8=9A=E0=B8=B1=E0=B8=95=E0=B8=B4?= =?UTF-8?q?=E0=B8=87=E0=B8=B2=E0=B8=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/09_leave/stores/WorkStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/09_leave/stores/WorkStore.ts b/src/modules/09_leave/stores/WorkStore.ts index b73277d46..abe4430e4 100644 --- a/src/modules/09_leave/stores/WorkStore.ts +++ b/src/modules/09_leave/stores/WorkStore.ts @@ -41,7 +41,7 @@ export const useWorklistDataStore = defineStore("work", () => { if (searchDate == null && srarchStatus == "all") { rows.value = dataMain.value } else if (searchDate == null && srarchStatus !== "all") { - rows.value = dataMain.value.filter((e: any) => e.status === convertSatatus(srarchStatus)) + rows.value = dataMain.value.filter((e: any) => e.status === srarchStatus) } } // From 5097e23ebc0f03a90ec322624cd09446b21dec93 Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Tue, 24 Oct 2023 11:53:53 +0700 Subject: [PATCH 2/3] no message --- src/modules/09_leave/components/1_Work/ToolBar.vue | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/modules/09_leave/components/1_Work/ToolBar.vue b/src/modules/09_leave/components/1_Work/ToolBar.vue index 08aa4b057..cf91a2bca 100644 --- a/src/modules/09_leave/components/1_Work/ToolBar.vue +++ b/src/modules/09_leave/components/1_Work/ToolBar.vue @@ -30,6 +30,7 @@ const { filterFn, searchDataFn } = workStore; }}