Removed stray logging

This commit is contained in:
Thaum Rystra
2020-05-14 15:25:58 +02:00
parent cb34363a4e
commit 136dd5fd29
3 changed files with 1 additions and 8 deletions

View File

@@ -105,9 +105,6 @@
},
],
};},
methods: {
log: console.log
},
};
</script>

View File

@@ -58,7 +58,7 @@
label="Verbal"
:input-value="model.verbal"
:error-messages="errors.verbal"
@change="(value) => log(value)/*$emit('change', {path: ['verbal'], value})*/"
@change="(value) => $emit('change', {path: ['verbal'], value})"
/>
<v-checkbox
label="Somatic"
@@ -213,9 +213,6 @@
},
],
};},
methods: {
log: console.log,
},
};
</script>

View File

@@ -49,7 +49,6 @@ export default {
this.loading = true;
Meteor.users.canPickUsername.call({username}, (error, result) => {
this.loading = false;
console.log({error, result})
if (error){
this.valid = false;
ack(error.message || error);