Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 8 additions & 0 deletions src/components/LeftSidebar/ConversationsList/Conversation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@
<ActionButton
:close-after-click="true"
@click.prevent.exact="markConversationAsRead">
<template #icon>
<EyeOutline
decorative
title=""
:size="16" />
</template>
{{ t('spreed', 'Mark as read') }}
</ActionButton>

Expand Down Expand Up @@ -113,6 +119,7 @@ import ActionSeparator from '@nextcloud/vue/dist/Components/ActionSeparator'
import ActionCaption from '@nextcloud/vue/dist/Components/ActionCaption'
import AppContentListItem from './AppContentListItem/AppContentListItem'
import AppNavigationCounter from '@nextcloud/vue/dist/Components/AppNavigationCounter'
import EyeOutline from 'vue-material-design-icons/EyeOutline'
import ConversationIcon from './../../ConversationIcon'
import { generateUrl } from '@nextcloud/router'
import { CONVERSATION, PARTICIPANT, ATTENDEE } from '../../../constants'
Expand All @@ -126,6 +133,7 @@ export default {
AppContentListItem,
AppNavigationCounter,
ConversationIcon,
EyeOutline,
},
props: {
isSearchResult: {
Expand Down
8 changes: 8 additions & 0 deletions src/components/MessagesList/MessagesGroup/Message/Message.vue
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,12 @@ the main body of the message as well as a quote.
<ActionButton
:close-after-click="true"
@click.stop="handleMarkAsUnread">
<template #icon>
<EyeOffOutline
decorative
title=""
:size="16" />
</template>
{{ t('spreed', 'Mark as unread') }}
</ActionButton>
<ActionLink
Expand Down Expand Up @@ -206,6 +212,7 @@ import RichText from '@juliushaertl/vue-richtext'
import AlertCircle from 'vue-material-design-icons/AlertCircle'
import Check from 'vue-material-design-icons/Check'
import CheckAll from 'vue-material-design-icons/CheckAll'
import EyeOffOutline from 'vue-material-design-icons/EyeOffOutline'
import Reload from 'vue-material-design-icons/Reload'
import Quote from '../../../Quote'
import isInCall from '../../../../mixins/isInCall'
Expand Down Expand Up @@ -241,6 +248,7 @@ export default {
AlertCircle,
Check,
CheckAll,
EyeOffOutline,
Reload,
ActionSeparator,
},
Expand Down