From a2bad32c6d61ebbec11f4f241fbf907a88d3891d Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Wed, 25 Feb 2026 15:13:12 +0700 Subject: [PATCH] fix : --- src/components/Workflow/DialogSelectPerson.vue | 1 + src/utils/functions.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Workflow/DialogSelectPerson.vue b/src/components/Workflow/DialogSelectPerson.vue index 27a359b..7f2f1ae 100644 --- a/src/components/Workflow/DialogSelectPerson.vue +++ b/src/components/Workflow/DialogSelectPerson.vue @@ -189,6 +189,7 @@ watch(modal, (val) => { v-model="formDataQuery.isAct" label="แสดงเฉพาะรักษาการแทน" color="primary" + @update:model-value="onSearchData" > แสดงเฉพาะรักษาการแทน diff --git a/src/utils/functions.ts b/src/utils/functions.ts index c43aa95..7c292fc 100644 --- a/src/utils/functions.ts +++ b/src/utils/functions.ts @@ -17,7 +17,7 @@ export function calculateFiscalYear(date: Date) { */ export function getColumnLabel(col: any, isAct: boolean) { if (col.name === "posNo" && isAct) { - return `${col.label} (รักษาการแทน)`; + return `${col.label}รักษาการแทน`; } return col.label; }