From bd363ba5a932fcff49f064329577d2572b98853b Mon Sep 17 00:00:00 2001 From: kazuyoshi80 Date: Sun, 26 May 2024 10:54:19 +0900 Subject: [PATCH 1/3] Update visibility condition in Votes.vue Replaced hard coded visibility condition with check for whether a post is masked. This change will ensure that post content and images are hidden as expected when a post's "masked" property is set to true. --- src/components/Pages/Votes.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Pages/Votes.vue b/src/components/Pages/Votes.vue index a1950ecd..fd67f37d 100644 --- a/src/components/Pages/Votes.vue +++ b/src/components/Pages/Votes.vue @@ -98,7 +98,7 @@ onMounted(async () => {

{{ post.updated_at }}

-

+

{{ post.stripedMarkdown }}

{
-
+
Date: Sun, 26 May 2024 11:07:35 +0900 Subject: [PATCH 2/3] Update visibility condition in Votes.vue Replaced hard coded visibility condition with check for whether a post is masked. This change will ensure that post content and images are hidden as expected when a post's "masked" property is set to true. --- src/components/Pages/Votes.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/Pages/Votes.vue b/src/components/Pages/Votes.vue index fd67f37d..4eb38333 100644 --- a/src/components/Pages/Votes.vue +++ b/src/components/Pages/Votes.vue @@ -98,7 +98,10 @@ onMounted(async () => {

{{ post.updated_at }}

-

+

{{ post.stripedMarkdown }}

Date: Sun, 26 May 2024 11:08:22 +0900 Subject: [PATCH 3/3] 0.8.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0843e2cd..0a772033 100644 --- a/package.json +++ b/package.json @@ -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",