From ae3aac1ee250fd8207ff41a0f6a9f38f82a18a58 Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期六, 22 一月 2022 17:06:14 +0800 Subject: [PATCH] fixed TODO#134587 未聯絡狀態發送約訪通知後,未顯示於約訪中列表 --- PAMapp/components/Consultant/ConsultantCard.vue | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/PAMapp/components/Consultant/ConsultantCard.vue b/PAMapp/components/Consultant/ConsultantCard.vue index d60648b..f7198f6 100644 --- a/PAMapp/components/Consultant/ConsultantCard.vue +++ b/PAMapp/components/Consultant/ConsultantCard.vue @@ -217,7 +217,7 @@ get latestReservedAppointment(): Appointment { return this.agentInfo.appointments! - .filter((appointment) => appointment.communicateStatus !== 'contacted') + .filter((appointment) => appointment.communicateStatus === 'reserved') .map((reversedAppointment) => { return { ...reversedAppointment, -- Gitblit v1.8.0