Skip to content

Commit

Permalink
Update apps/ui/src/components/Modal/Votes.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaituVR authored Jan 9, 2025
1 parent 9638e5d commit b8ae403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/ui/src/components/Modal/Votes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ async function handleEndReached() {
}
const isEncrypted = computed(() => {
return props.proposal.privacy === 'shutter' && !props.proposal.completed;
return props.proposal.privacy !== 'none' && !props.proposal.completed;
});
watch([open, () => props.proposal.id], ([toOpen, toId], [, fromId]) => {
Expand Down

0 comments on commit b8ae403

Please sign in to comment.