Removed stray logging

This commit is contained in:
Stefan Zermatten
2020-05-31 22:36:27 +02:00
parent 21b823f85c
commit b04b915c7b
6 changed files with 0 additions and 13 deletions

View File

@@ -107,7 +107,6 @@
let allowed = isParentAllowed({parentType, childType});
return allowed;
},
log: console.log,
},
};
</script>

View File

@@ -40,9 +40,6 @@
searchString: '',
testIcon: undefined,
}},
mounted(){
console.log(this.$vuetify);
},
methods: {
fileChanged (file) {
importIcons(file);

View File

@@ -119,9 +119,6 @@
'toggleDrawer',
]),
},
mounted(){
console.log(this.$route);
}
};
</script>

View File

@@ -101,7 +101,6 @@ export default {
selection: this.selection,
},
callback: result => {
console.log(result)
if (result){
this.selected = id;
}

View File

@@ -29,7 +29,6 @@ export default {
}},
meteor: {
library(){
console.log(this.$route);
return Libraries.findOne(this.$route.params.id);
},
subscribed(){
@@ -41,7 +40,6 @@ export default {
let userId = Meteor.userId();
let library = this.library;
if (!library) return;
console.log({library, userId});
if (
library.readers.includes(userId) ||
library.writers.includes(userId) ||
@@ -55,10 +53,8 @@ export default {
canEdit(){
try {
assertDocEditPermission(this.library, Meteor.userId());
console.log('can edit');
return true
} catch (e) {
console.log(e);
return false;
}
}

View File

@@ -22,7 +22,6 @@ for (const name in SVG_ICONS) {
}
}
}
console.log(icons);
Vue.use(VueMeteorTracker);
Vue.config.meteor.freeze = true