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:
authorJoas Schilling <coding@schilljs.com>2022-04-13 17:04:28 +0300
committerJoas Schilling <coding@schilljs.com>2022-04-13 17:14:20 +0300
commitdbf79cb86ed49396560e30bd912407daeab5ba89 (patch)
tree8544fc941e2e1a124d8f3a6e2f26c21105cd0b1a /src
parent6a0840d51c1fb229303a0d86976185a30f471b56 (diff)
Add message about missing implementation
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/RightSidebar/SharedItems/SharedItems.vue2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/RightSidebar/SharedItems/SharedItems.vue b/src/components/RightSidebar/SharedItems/SharedItems.vue
index 7f8cbb72f..87fa91fad 100644
--- a/src/components/RightSidebar/SharedItems/SharedItems.vue
+++ b/src/components/RightSidebar/SharedItems/SharedItems.vue
@@ -51,6 +51,7 @@ import Button from '@nextcloud/vue/dist/Components/Button'
import FilePreview from '../../MessagesList/MessagesGroup/Message/MessagePart/FilePreview.vue'
import DotsHorizontal from 'vue-material-design-icons/DotsHorizontal.vue'
import AppNavigationCaption from '@nextcloud/vue/dist/Components/AppNavigationCaption'
+import { showMessage } from '@nextcloud/dialogs'
export default {
name: 'SharedItems',
@@ -139,6 +140,7 @@ export default {
methods: {
handleCaptionClick() {
+ showMessage('Screenshot feature only. Implementation of the real feature will come soon! 😎')
console.debug('Show more')
},
},