Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-10-15 12:08:05 +0300
committerJoas Schilling <coding@schilljs.com>2019-10-15 12:15:15 +0300
commit85a0dd5945734319f48cc6ef5ec412d97e9ec8c1 (patch)
tree4dbbe49da86847b06b81c1aafa11c12f1bc5c744
parent1ef400af646a076b15981de8b1c7ffbf7c79161c (diff)
Rename to ConversationIcon
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--src/components/ConversationIcon.vue (renamed from src/components/ConversationsIcon.vue)2
-rw-r--r--src/components/Navigation/ConversationsList/ConversationsList.vue6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/components/ConversationsIcon.vue b/src/components/ConversationIcon.vue
index 9f146065b..08e9b3328 100644
--- a/src/components/ConversationsIcon.vue
+++ b/src/components/ConversationIcon.vue
@@ -32,7 +32,7 @@
import Avatar from 'nextcloud-vue/dist/Components/Avatar'
export default {
- name: 'ConversationsIcon',
+ name: 'ConversationIcon',
components: {
Avatar
},
diff --git a/src/components/Navigation/ConversationsList/ConversationsList.vue b/src/components/Navigation/ConversationsList/ConversationsList.vue
index 8965d0734..8f245dedf 100644
--- a/src/components/Navigation/ConversationsList/ConversationsList.vue
+++ b/src/components/Navigation/ConversationsList/ConversationsList.vue
@@ -27,7 +27,7 @@
:to="{ name: 'conversation', params: { token: item.token }}"
:title="item.displayName"
@click.prevent.exact="joinConversation(item.token)">
- <ConversationsIcon
+ <ConversationIcon
slot="icon"
:item="item" />
<template slot="subtitle">
@@ -56,7 +56,7 @@
<script>
import 'vue-virtual-scroller/dist/vue-virtual-scroller.css'
-import ConversationsIcon from './../../ConversationsIcon'
+import ConversationIcon from '../../ConversationIcon'
import AppNavigationCounter from 'nextcloud-vue/dist/Components/AppNavigationCounter'
import AppContentListItem from './AppContentListItem/AppContentListItem'
import ActionButton from 'nextcloud-vue/dist/Components/ActionButton'
@@ -66,7 +66,7 @@ import { joinConversation, removeCurrentUserFromConversation } from '../../../se
export default {
name: 'ConversationsList',
components: {
- ConversationsIcon,
+ ConversationIcon,
AppNavigationCounter,
ActionButton,
AppContentListItem