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
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/GuestNameDialog.vue')
-rw-r--r--src/components/GuestNameDialog.vue14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/components/GuestNameDialog.vue b/src/components/GuestNameDialog.vue
index 624c8d069..77b4cc03a 100644
--- a/src/components/GuestNameDialog.vue
+++ b/src/components/GuestNameDialog.vue
@@ -35,6 +35,7 @@
import Tooltip from '@nextcloud/vue/dist/Directives/Tooltip'
import Avatar from '@nextcloud/vue/dist/Components/Avatar'
import { generateUrl } from '@nextcloud/router'
+import { useSyncServiceMixin } from './EditorWrapper.provider'
export default {
name: 'GuestNameDialog',
@@ -44,12 +45,7 @@ export default {
directives: {
tooltip: Tooltip,
},
- props: {
- syncService: {
- type: Object,
- default: null,
- },
- },
+ mixins: [useSyncServiceMixin],
data() {
return {
guestName: '',
@@ -69,13 +65,13 @@ export default {
},
},
beforeMount() {
- this.guestName = this.syncService.session.guestName
+ this.guestName = this.$syncService.session.guestName
this.updateBufferedGuestName()
},
methods: {
setGuestName() {
- const previousGuestName = this.syncService.session.guestName
- this.syncService.updateSession(this.guestName).then(() => {
+ const previousGuestName = this.$syncService.session.guestName
+ this.$syncService.updateSession(this.guestName).then(() => {
localStorage.setItem('nick', this.guestName)
this.updateBufferedGuestName()
}).catch((e) => {