summaryrefslogtreecommitdiffstats
path: root/src/components/LeftSidebar/ConversationsList/ConversationsList.vue
diff options
context:
space:
mode:
authorMaksim Sukharev <antreesy.web@gmail.com>2023-02-23 12:55:17 +0100
committerMaksim Sukharev <antreesy.web@gmail.com>2023-02-23 13:15:18 +0100
commit1ffd1de4efd02119fff320cd30bb7c5c3a845720 (patch)
treeab9130dd0523e0ee20a06789fe47920e2f8ea2e3 /src/components/LeftSidebar/ConversationsList/ConversationsList.vue
parent4aa58ec6b8e184f3a8030251667cd0875356cd65 (diff)
apply lint rules to .vue files
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
Diffstat (limited to 'src/components/LeftSidebar/ConversationsList/ConversationsList.vue')
-rw-r--r--src/components/LeftSidebar/ConversationsList/ConversationsList.vue7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/components/LeftSidebar/ConversationsList/ConversationsList.vue b/src/components/LeftSidebar/ConversationsList/ConversationsList.vue
index 5da8a332f..b3c2dd6da 100644
--- a/src/components/LeftSidebar/ConversationsList/ConversationsList.vue
+++ b/src/components/LeftSidebar/ConversationsList/ConversationsList.vue
@@ -34,12 +34,15 @@
</template>
<script>
+import { emit } from '@nextcloud/event-bus'
+
+import isMobile from '@nextcloud/vue/dist/Mixins/isMobile.js'
+
import Conversation from './Conversation.vue'
import Hint from '../../Hint.vue'
import LoadingPlaceholder from '../../LoadingPlaceholder.vue'
+
import { EventBus } from '../../../services/EventBus.js'
-import { emit } from '@nextcloud/event-bus'
-import isMobile from '@nextcloud/vue/dist/Mixins/isMobile.js'
export default {
name: 'ConversationsList',