Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
own messages can be copied
Signed-off-by: Jakob Röhrl <[email protected]>
  • Loading branch information
jakobroehrl committed Mar 8, 2021
commit 22da040506e5eb9ecee9aab5370449dfd5789d3d
4 changes: 2 additions & 2 deletions src/components/MessagesList/MessagesGroup/Message/Message.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ the main body of the message as well as a quote.
{{ t('spreed', 'Reply privately') }}
</ActionButton>
<ActionButton
v-if="!isSystemMessage"
v-if="isReplyable"
icon="icon-external"
:close-after-click="true"
@click.stop.prevent="handleCopyMessageLink">
Expand All @@ -153,7 +153,7 @@ the main body of the message as well as a quote.
</ActionButton>
</template>
<template v-if="isDeleteable">
<ActionSeparator />
<ActionSeparator v-if="isReplyable || messageActions.length > 0" />
<ActionButton
icon="icon-delete"
:close-after-click="true"
Expand Down