Browse Source
Add icon for mark as read
Signed-off-by: Christopher Ng <chrng8@gmail.com>
pull/5893/head
Christopher Ng
4 years ago
committed by
Joas Schilling
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
1 changed files with
8 additions and
0 deletions
-
src/components/LeftSidebar/ConversationsList/Conversation.vue
|
|
|
@ -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> |
|
|
|
|
|
|
|
@ -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' |
|
|
|
@ -126,6 +133,7 @@ export default { |
|
|
|
AppContentListItem, |
|
|
|
AppNavigationCounter, |
|
|
|
ConversationIcon, |
|
|
|
EyeOutline, |
|
|
|
}, |
|
|
|
props: { |
|
|
|
isSearchResult: { |
|
|
|
|