Skip to content

Commit 622fa8c

Browse files
authored
Merge pull request #482 from dev-protocol/feature/bug-fix
Feature/bug fix
2 parents 88447fe + ae42451 commit 622fa8c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devprotocol/clubs-plugin-posts-voting",
3-
"version": "0.7.0",
3+
"version": "0.8.0",
44
"type": "module",
55
"description": "Template repository for using TypeScript",
66
"main": "dist/index.js",

src/components/Pages/Votes.vue

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,10 @@ onMounted(async () => {
9898
<p class="mb-1 text-xs text-gray-400">{{ post.updated_at }}</p>
9999
<div class="flex justify-between gap-2">
100100
<Profile :address="post.created_by" />
101-
<p v-if="true" class="flex-grow flex-wrap text-lg truncate">
101+
<p
102+
v-if="!post.masked"
103+
class="flex-grow flex-wrap text-lg truncate"
104+
>
102105
{{ post.stripedMarkdown }}
103106
</p>
104107
<div
@@ -114,7 +117,7 @@ onMounted(async () => {
114117
</div>
115118
</div>
116119
</div>
117-
<figure v-if="!isMasked && post.image">
120+
<figure v-if="!post.masked && post.image">
118121
<img
119122
:src="post.image"
120123
class="rounded max-w-20 max-h-20 object-cover object-center"

0 commit comments

Comments
 (0)