Remove unused console log

This commit is contained in:
Joel Collins 2020-05-19 10:47:44 +01:00
parent 1ffd2b16a8
commit 1a2822f709

View file

@ -133,12 +133,12 @@ export default {
deleteAll: function() { deleteAll: function() {
axios axios
.all(this.allURLs.map(l => axios.delete(l))) .all(this.allURLs.map(l => axios.delete(l)))
.then( .then
axios.spread(function(...res) { //axios.spread(function(...res) {
// all requests are now complete // all requests are now complete
console.log(res); //console.log(res);
}) //})
) ()
.then(() => { .then(() => {
// Emit signal to update capture list // Emit signal to update capture list
this.$root.$emit("globalUpdateCaptures"); this.$root.$emit("globalUpdateCaptures");