comment all console.log in AccompanyingCourse component

This commit is contained in:
2021-08-17 18:32:43 +02:00
parent 76eea2a4eb
commit b87046dcd6
7 changed files with 21 additions and 21 deletions

View File

@@ -68,11 +68,11 @@ export default {
}),
methods: {
removeResource(item) {
console.log('@@ CLICK remove resource: item', item);
//console.log('@@ CLICK remove resource: item', item);
this.$store.dispatch('removeResource', item);
},
addNewPersons({ selected, modal }) {
console.log('@@@ CLICK button addNewPersons', selected);
//console.log('@@@ CLICK button addNewPersons', selected);
selected.forEach(function(item) {
this.$store.dispatch('addResource', item);
}, this