From 2f29084d4ff4e28b54046e27e2248809171ad5dc Mon Sep 17 00:00:00 2001 From: absidue <48293849+absidue@users.noreply.github.com> Date: Mon, 19 Feb 2024 12:02:32 +0100 Subject: [PATCH] Remove unused isLoading from ft-community-post (#4684) --- 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 b8d4ace5c..6be036209 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 053bd4c61..f65e379e4 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 @@