Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
fix(consultation): use the new started at to update consultation
Browse files Browse the repository at this point in the history
  • Loading branch information
KennethTrecy committed Sep 17, 2022
1 parent 688f234 commit 5899aa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/consultation/chat_window.vue
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function startConsultation() {
"finishedAt": consultation.finishedAt,
"reason": consultation.reason,
"scheduledStartAt": consultation.scheduledStartAt,
"startedAt": consultation.startedAt
"startedAt": new Date(newConsultationData.startedAt as string)
}
interval.value = setInterval(() => {
Expand Down

0 comments on commit 5899aa3

Please sign in to comment.