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 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" ,
Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments