logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://anongit.hacktivis.me/git/pleroma-fe.git/
commit: 4c732a8ca5e7ae93a10d5b6385b6f3ed859b8654
parent 085788f6375b90ef345090e148ebb489e8a175a0
Author: Henry Jameson <me@hjkos.com>
Date:   Tue, 21 Jan 2025 10:26:58 +0200

minor fixes

Diffstat:

Msrc/components/status/status.vue6------
Msrc/components/status_action_buttons/action_button.js3+++
Msrc/components/status_action_buttons/status_action_buttons.js3---
3 files changed, 3 insertions(+), 9 deletions(-)

diff --git a/src/components/status/status.vue b/src/components/status/status.vue @@ -558,12 +558,6 @@ <div class="deleted-text"> {{ $t('status.status_deleted') }} </div> - <reply-button - v-if="replying" - :replying="replying" - :status="status" - @toggle="toggleReplying" - /> </div> </div> <div diff --git a/src/components/status_action_buttons/action_button.js b/src/components/status_action_buttons/action_button.js @@ -125,6 +125,9 @@ export default { }, 500) close() } + }, + getRemoteInteractionLink () { + return this.$store.getters.remoteInteractionLink({ statusId: this.status.id }) } } } diff --git a/src/components/status_action_buttons/status_action_buttons.js b/src/components/status_action_buttons/status_action_buttons.js @@ -129,9 +129,6 @@ const StatusActionButtons = { '-dropdown': button.dropdown?.(), '-active': button.active?.(this.funcArg) } - }, - getRemoteInteractionLink () { - return this.$store.getters.remoteInteractionLink({ statusId: this.status.id }) } } }