Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuka Trovic <luka@nextcloud.com>2022-08-25 00:33:59 +0300
committerJulius Härtl <jus@bitgrid.net>2022-08-25 12:04:53 +0300
commit890e615929daabf0744301aacdad7f62d81ebfa2 (patch)
treee8fe62f7b2eab24946ee967fe1b0937cb089f642 /src
parentc7af3297030803cae1a4eb8fadca18fcc937250e (diff)
fix: feedback
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'src')
-rw-r--r--src/extensions/Mention.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/extensions/Mention.vue b/src/extensions/Mention.vue
index bf4370b7e..d9be2d869 100644
--- a/src/extensions/Mention.vue
+++ b/src/extensions/Mention.vue
@@ -7,7 +7,7 @@
</template>
<script>
-import NcUserBubble from '@nextcloud/vue/dist/Components/NcUserBubble'
+import NcUserBubble from '@nextcloud/vue/dist/Components/NcUserBubble.js'
import { NodeViewWrapper } from '@tiptap/vue-2'
export default {
@@ -29,14 +29,14 @@ export default {
},
data() {
return {
- username: this.node.attrs.label
+ username: this.node.attrs.label,
}
- }
+ },
}
</script>
<style scoped>
/* This is required to properly render the bubble text (which seems linke a browser bug) */
.text-editor__wrapper div.ProseMirror .mention[contenteditable=false] :deep(*) {
- -webkit-user-modify: read-only !important;
+ -webkit-user-modify: read-only !important;
}
</style>