From 34ad2e43fd41884756e1cae021bb1fc94a1f88ae Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Mon, 13 Mar 2023 13:16:29 +0100 Subject: [PATCH 1/2] Disable composer when sending status Signed-off-by: Louis Chemineau --- src/components/Composer/Composer.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Composer/Composer.vue b/src/components/Composer/Composer.vue index 343a58f1..77067035 100644 --- a/src/components/Composer/Composer.vue +++ b/src/components/Composer/Composer.vue @@ -67,7 +67,7 @@
Date: Mon, 13 Mar 2023 13:22:37 +0100 Subject: [PATCH 2/2] Fix isBoost computed property Signed-off-by: Louis Chemineau --- src/components/TimelineEntry.vue | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/TimelineEntry.vue b/src/components/TimelineEntry.vue index 4d649770..12c213e3 100644 --- a/src/components/TimelineEntry.vue +++ b/src/components/TimelineEntry.vue @@ -84,11 +84,9 @@ export default { isNotification() { return this.item.type !== undefined }, - /** - * @return {boolean} - */ + /** @return {boolean} */ isBoost() { - return this.reblog !== null + return this.status.reblog !== null }, /** @return {import('../types/Mastodon.js').Notification} */ notification() {