minor fixes

This commit is contained in:
Henry Jameson 2025-01-21 10:26:58 +02:00
parent 085788f637
commit 4c732a8ca5
3 changed files with 3 additions and 9 deletions

View file

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

View file

@ -125,6 +125,9 @@ export default {
}, 500)
close()
}
},
getRemoteInteractionLink () {
return this.$store.getters.remoteInteractionLink({ statusId: this.status.id })
}
}
}

View file

@ -129,9 +129,6 @@ const StatusActionButtons = {
'-dropdown': button.dropdown?.(),
'-active': button.active?.(this.funcArg)
}
},
getRemoteInteractionLink () {
return this.$store.getters.remoteInteractionLink({ statusId: this.status.id })
}
}
}