From fbdde94414cbb658c24ea01310f541d488b0d7fd Mon Sep 17 00:00:00 2001 From: absidue <48293849+absidue@users.noreply.github.com> Date: Sat, 17 Feb 2024 11:38:29 +0100 Subject: [PATCH] Remove unused isLoading from ft-community-post --- src/renderer/components/ft-community-post/ft-community-post.js | 2 -- src/renderer/components/ft-community-post/ft-community-post.vue | 1 - 2 files changed, 3 deletions(-) diff --git a/src/renderer/components/ft-community-post/ft-community-post.js b/src/renderer/components/ft-community-post/ft-community-post.js index 350eccc102020..c9c7534f40360 100644 --- a/src/renderer/components/ft-community-post/ft-community-post.js +++ b/src/renderer/components/ft-community-post/ft-community-post.js @@ -40,7 +40,6 @@ export default defineComponent({ voteCount: '', postContent: '', commentCount: '', - isLoading: true, author: '', authorId: '', } @@ -132,7 +131,6 @@ export default defineComponent({ this.type = (this.data.postContent !== null && this.data.postContent !== undefined) ? this.data.postContent.type : 'text' this.author = this.data.author this.authorId = this.data.authorId - this.isLoading = false }, getBestQualityImage(imageArray) { diff --git a/src/renderer/components/ft-community-post/ft-community-post.vue b/src/renderer/components/ft-community-post/ft-community-post.vue index 053bd4c61a59d..f65e379e47824 100644 --- a/src/renderer/components/ft-community-post/ft-community-post.vue +++ b/src/renderer/components/ft-community-post/ft-community-post.vue @@ -1,6 +1,5 @@