Skip to content

Commit

Permalink
fix(tasks): remove old console log 🐛
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreBrisorgueil committed Mar 13, 2020
1 parent 0138003 commit b1aeb58
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/modules/tasks/views/task.view.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,9 @@ export default {
methods: {
create() {
if (this.$refs.form.validate()) {
console.log(this.task);
this.$store
.dispatch('createTask', this.task)
.then(() => {
console.log(this.task);
this.$router.push(`/task/${this.task.id}`);
this.save = false;
})
Expand Down

0 comments on commit b1aeb58

Please sign in to comment.