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 <213943+nickvergessen@users.noreply.github.com>2021-01-19 23:42:14 +0300
committerGitHub <noreply@github.com>2021-01-19 23:42:14 +0300
commit10414a8a4fa70b6b3e6cf4ddf384e4d785edbed4 (patch)
tree28bbda28b5374c652e0b15a807fbfba4222566f8
parentd068d9bb5ecd05458e2c4fccad0e5ea35d36698d (diff)
parent134a051895ab2f3ba5e353644dff3e7130f0276a (diff)
Merge pull request #4973 from nextcloud/bugfix/noid/fix-open-conversations-heading
Fix open conversations heading
-rw-r--r--src/components/LeftSidebar/LeftSidebar.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/LeftSidebar/LeftSidebar.vue b/src/components/LeftSidebar/LeftSidebar.vue
index 7298b6b8a..9a72897ab 100644
--- a/src/components/LeftSidebar/LeftSidebar.vue
+++ b/src/components/LeftSidebar/LeftSidebar.vue
@@ -47,7 +47,7 @@
<template v-if="isSearching">
<template v-if="!listedConversationsLoading && searchResultsListedConversations.length > 0">
<Caption
- :title="t('spreed', 'Listed conversations')" />
+ :title="t('spreed', 'Open conversations')" />
<Conversation
v-for="item of searchResultsListedConversations"
:key="item.id"
@@ -329,7 +329,7 @@ export default {
if (CancelableRequest.isCancel(exception)) {
return
}
- console.error('Error searching for listed conversations', exception)
+ console.error('Error searching for open conversations', exception)
showError(t('spreed', 'An error occurred while performing the search'))
}
},