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