Fixed syntax errors breaking the build

This commit is contained in:
Stefan Zermatten
2020-03-02 16:35:16 +02:00
parent 5578dca6e9
commit d0c8131d5f

View File

@@ -12,7 +12,7 @@
]" ]"
:value="model.public" :value="model.public"
:error-messages="errors.public" :error-messages="errors.public"
@change="(value, ack) => setSheetPublic({value, ack}))" @change="(value, ack) => setSheetPublic({value, ack})"
/> />
<div class="layout row"> <div class="layout row">
<text-field <text-field
@@ -51,10 +51,10 @@ export default {
components: { components: {
DialogBase, DialogBase,
}, },
data(){ data(){ return {
userFoundState: 'idle', userFoundState: 'idle',
userId: undefined, userId: undefined,
}, }},
props: { props: {
ref: Object, ref: Object,
}, },
@@ -80,7 +80,7 @@ export default {
}, },
}, },
meteor: { meteor: {
model: { model(){
return fetchDocByRef(this.ref); return fetchDocByRef(this.ref);
}, },
username(userId){ username(userId){