Skip to content

Commit

Permalink
Merge pull request #482 from dev-protocol/feature/bug-fix
Browse files Browse the repository at this point in the history
Feature/bug fix
  • Loading branch information
kazuyoshi80 authored May 26, 2024
2 parents 88447fe + ae42451 commit 622fa8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devprotocol/clubs-plugin-posts-voting",
"version": "0.7.0",
"version": "0.8.0",
"type": "module",
"description": "Template repository for using TypeScript",
"main": "dist/index.js",
Expand Down
7 changes: 5 additions & 2 deletions src/components/Pages/Votes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ onMounted(async () => {
<p class="mb-1 text-xs text-gray-400">{{ post.updated_at }}</p>
<div class="flex justify-between gap-2">
<Profile :address="post.created_by" />
<p v-if="true" class="flex-grow flex-wrap text-lg truncate">
<p
v-if="!post.masked"
class="flex-grow flex-wrap text-lg truncate"
>
{{ post.stripedMarkdown }}
</p>
<div
Expand All @@ -114,7 +117,7 @@ onMounted(async () => {
</div>
</div>
</div>
<figure v-if="!isMasked && post.image">
<figure v-if="!post.masked && post.image">
<img
:src="post.image"
class="rounded max-w-20 max-h-20 object-cover object-center"
Expand Down

0 comments on commit 622fa8c

Please sign in to comment.