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

Commit

Permalink
fix(consultation): set age to "canceled"
Browse files Browse the repository at this point in the history
  • Loading branch information
lemredd committed Nov 23, 2022
1 parent 6ae35ad commit 77176d2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions components/consultation/chat_window.vue
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ const receivedErrors = ref<string[]>([])
const age = computed<string>(() => {
if (consultation.value.finishedAt) return "an old"
if (consultation.value.deletedAt) return "a canceled"
return "a new"
})
const actionTaken = ref("")
Expand Down

0 comments on commit 77176d2

Please sign in to comment.