diff --git a/app/imports/server/publications/slotFillers.js b/app/imports/server/publications/slotFillers.js index 031beaea..9d297293 100644 --- a/app/imports/server/publications/slotFillers.js +++ b/app/imports/server/publications/slotFillers.js @@ -8,7 +8,6 @@ Meteor.publish('slotFillers', function(slotId){ return this.ready(); } // Get the slot - console.log({slotId}); let slot = CreatureProperties.findOne(slotId); if (!slot){ return this.ready() @@ -30,8 +29,6 @@ Meteor.publish('slotFillers', function(slotId){ fields: {_id: 1}, }).map(lib => lib._id); - console.log(libraryIds); - // Build a filter for nodes in those libraries that match the slot let filter = { 'ancestors.id': {$in: libraryIds}, @@ -40,8 +37,6 @@ Meteor.publish('slotFillers', function(slotId){ if (slot.slotType){ filter.type = slot.slotType; } - console.log(filter); - console.log(LibraryNodes.find(filter).fetch()); return LibraryNodes.find(filter); }); }); diff --git a/app/imports/ui/creature/slots/SlotFillDialog.vue b/app/imports/ui/creature/slots/SlotFillDialog.vue index 8b4c1491..31ca317c 100644 --- a/app/imports/ui/creature/slots/SlotFillDialog.vue +++ b/app/imports/ui/creature/slots/SlotFillDialog.vue @@ -81,7 +81,6 @@ export default { if (this.model.slotType){ filter.type = this.model.slotType; } - console.log(filter); return LibraryNodes.find(filter); }, }