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 @@