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:
authorMarco Ambrosini <marcoambrosini@pm.me>2021-02-10 19:56:49 +0300
committerMarco Ambrosini <marcoambrosini@pm.me>2021-02-16 11:41:31 +0300
commit3748a6b969a0187cb6434ceb3757265f29454445 (patch)
treede0a9ea288e27e42734e116f79eeeead076f9aa0 /src/components/ChatView.vue
parent54c8d9c59b06d5ffef5e130ed20271a70827f4c1 (diff)
Fix conversation switch lag
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
Diffstat (limited to 'src/components/ChatView.vue')
-rw-r--r--src/components/ChatView.vue11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/components/ChatView.vue b/src/components/ChatView.vue
index 9668e6db8..2f46fb72c 100644
--- a/src/components/ChatView.vue
+++ b/src/components/ChatView.vue
@@ -70,13 +70,6 @@ export default {
NewMessageForm,
},
- props: {
- token: {
- type: String,
- required: true,
- },
- },
-
data: function() {
return {
isDraggingOver: false,
@@ -109,6 +102,10 @@ export default {
return undefined
}
},
+
+ token() {
+ return this.$store.getters.getToken()
+ },
},
methods: {