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; }