mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 11:33:44 +02:00
Fix share dialog.
This commit is contained in:
parent
1a348d02f9
commit
118ccbdbe5
1 changed files with 3 additions and 2 deletions
|
@ -396,6 +396,7 @@
|
|||
ref="shareForm"
|
||||
v-model="shareDialog.valid"
|
||||
:lazy-validation="false"
|
||||
class="px-2"
|
||||
>
|
||||
|
||||
<!-- <v-list>
|
||||
|
@ -416,7 +417,7 @@
|
|||
:items="nearbyUsers"
|
||||
item-text="name"
|
||||
item-value="uuid"
|
||||
:rules="[v => !!v || 'A user is required']"
|
||||
:rules="[v => !!v || 'A recipient is required']"
|
||||
label="Nearby Users"
|
||||
required
|
||||
></v-select>
|
||||
|
@ -678,7 +679,7 @@ new Vue({
|
|||
shareItem: function() {
|
||||
this.sendAppMessage("share-item", {
|
||||
"url": this.shareDialog.data.url,
|
||||
"recipient": this.nearbyUsers[this.shareDialog.data.recipient].uuid,
|
||||
"recipient": this.shareDialog.data.recipient,
|
||||
});
|
||||
},
|
||||
acceptItem: function() {
|
||||
|
|
Loading…
Reference in a new issue