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 values of states
Browse files Browse the repository at this point in the history
  • Loading branch information
lemredd committed Nov 23, 2022
1 parent 77176d2 commit c825b37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ const {
isDone,
isOngoing
} = makeConsultationStates(props)
const isConsultationFinishedOrCancelled = isDone || isCanceled
const isConsultationFinishedOrCancelled = isDone.value || isCanceled.value
const actionTaken = computed<string>({
get(): string {
return props.modelValue
Expand Down

0 comments on commit c825b37

Please sign in to comment.