Removed stray logging
This commit is contained in:
@@ -107,7 +107,6 @@
|
||||
let allowed = isParentAllowed({parentType, childType});
|
||||
return allowed;
|
||||
},
|
||||
log: console.log,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
@@ -40,9 +40,6 @@
|
||||
searchString: '',
|
||||
testIcon: undefined,
|
||||
}},
|
||||
mounted(){
|
||||
console.log(this.$vuetify);
|
||||
},
|
||||
methods: {
|
||||
fileChanged (file) {
|
||||
importIcons(file);
|
||||
|
||||
@@ -119,9 +119,6 @@
|
||||
'toggleDrawer',
|
||||
]),
|
||||
},
|
||||
mounted(){
|
||||
console.log(this.$route);
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
|
||||
@@ -101,7 +101,6 @@ export default {
|
||||
selection: this.selection,
|
||||
},
|
||||
callback: result => {
|
||||
console.log(result)
|
||||
if (result){
|
||||
this.selected = id;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,6 @@ for (const name in SVG_ICONS) {
|
||||
}
|
||||
}
|
||||
}
|
||||
console.log(icons);
|
||||
|
||||
Vue.use(VueMeteorTracker);
|
||||
Vue.config.meteor.freeze = true
|
||||
|
||||
Reference in New Issue
Block a user