From ecc0e977819e5ef7779cfd4d5a5e789295092124 Mon Sep 17 00:00:00 2001 From: waruneeta Date: Fri, 1 Dec 2023 16:16:45 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=9B=E0=B8=A3=E0=B8=B1=E0=B8=9A=E0=B9=80?= =?UTF-8?q?=E0=B8=87=E0=B8=B7=E0=B9=88=E0=B8=AD=E0=B8=99=E0=B9=84=E0=B8=82?= =?UTF-8?q?=E0=B8=AA=E0=B9=88=E0=B8=87=E0=B9=84=E0=B8=9B=E0=B8=9E=E0=B8=B1?= =?UTF-8?q?=E0=B8=81=E0=B8=A3=E0=B8=B2=E0=B8=8A=E0=B8=81=E0=B8=B2=E0=B8=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/3_InvestigateDisciplinary/EditPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/11_discipline/components/3_InvestigateDisciplinary/EditPage.vue b/src/modules/11_discipline/components/3_InvestigateDisciplinary/EditPage.vue index c1b962942..fdf4ab3fa 100644 --- a/src/modules/11_discipline/components/3_InvestigateDisciplinary/EditPage.vue +++ b/src/modules/11_discipline/components/3_InvestigateDisciplinary/EditPage.vue @@ -175,7 +175,7 @@ const onSubmit = async (id: string) => { /** ยืนยัน ส่งไปออกคำสั่ง */ const respondentRows = ref(); async function sentIssue() { - respondentRows.value = await store.rowSent.filter((x) => !x.report); //x.report === false + respondentRows.value = await store.rowSent.filter((x) => x.report === false); //x.report === false modalPopup.value = true; }