Skip to content

Commit

Permalink
Hide private notes when is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
vanarok committed Oct 14, 2024
1 parent bf14aa5 commit 6563094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoints/sidepanel/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ if (!isComplete.value) {
</div>
</div>
</div>
<div v-if="project" :title="project.private_notes" class="private-notes">
<div v-if="project && project.private_notes" :title="project.private_notes" class="private-notes">
<strong>Private notes:</strong>
{{ project.private_notes }}
</div>
Expand Down

0 comments on commit 6563094

Please sign in to comment.