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
path: root/src
diff options
context:
space:
mode:
authorMarco Ambrosini <marcoambrosini@pm.me>2020-01-07 16:50:24 +0300
committerMarco Ambrosini <marcoambrosini@pm.me>2020-01-08 17:35:09 +0300
commitc96adaf0d9d7d071fa11d22766699f704dd4971b (patch)
tree3bded2d71208da48cab207a66cc214304de10248 /src
parent3d40f399ed07db6774b21dc6fb0fe74d826e9188 (diff)
Remove virtual list
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
Diffstat (limited to 'src')
-rw-r--r--src/components/MessagesList/MessagesList.vue8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/components/MessagesList/MessagesList.vue b/src/components/MessagesList/MessagesList.vue
index 41705c260..1485708de 100644
--- a/src/components/MessagesList/MessagesList.vue
+++ b/src/components/MessagesList/MessagesList.vue
@@ -30,9 +30,7 @@ the Vue virtual scroll list component, whose docs you can find [here.](https://g
<template>
<!-- size and remain refer to the amount and initial height of the items that
are outside of the viewport -->
- <virtual-list :size="40"
- :remain="8"
- :variable="true"
+ <div
class="scroller">
<MessagesGroup
v-for="item of messagesGroupedByAuthor"
@@ -41,12 +39,11 @@ the Vue virtual scroll list component, whose docs you can find [here.](https://g
v-bind="item"
:messages="item"
@deleteMessage="handleDeleteMessage" />
- </virtual-list>
+ </div>
</template>
<script>
import moment from '@nextcloud/moment'
-import virtualList from 'vue-virtual-scroll-list'
import MessagesGroup from './MessagesGroup/MessagesGroup'
import { fetchMessages, lookForNewMessages } from '../../services/messagesService'
import { EventBus } from '../../services/EventBus'
@@ -57,7 +54,6 @@ export default {
name: 'MessagesList',
components: {
MessagesGroup,
- virtualList,
},
props: {