File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @devprotocol/clubs-plugin-posts-voting" ,
3
- "version" : " 0.7 .0" ,
3
+ "version" : " 0.8 .0" ,
4
4
"type" : " module" ,
5
5
"description" : " Template repository for using TypeScript" ,
6
6
"main" : " dist/index.js" ,
Original file line number Diff line number Diff line change @@ -98,7 +98,10 @@ onMounted(async () => {
98
98
<p class =" mb-1 text-xs text-gray-400" >{{ post.updated_at }}</p >
99
99
<div class =" flex justify-between gap-2" >
100
100
<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
+ >
102
105
{{ post.stripedMarkdown }}
103
106
</p >
104
107
<div
@@ -114,7 +117,7 @@ onMounted(async () => {
114
117
</div >
115
118
</div >
116
119
</div >
117
- <figure v-if =" !isMasked && post.image" >
120
+ <figure v-if =" !post.masked && post.image" >
118
121
<img
119
122
:src =" post.image"
120
123
class =" rounded max-w-20 max-h-20 object-cover object-center"
You can’t perform that action at this time.
0 commit comments