remove console.log entries
This commit is contained in:
parent
382654188c
commit
9af5c9ead9
|
@ -251,8 +251,7 @@ export default {
|
|||
this.notifySuccess("Agent was edited!");
|
||||
})
|
||||
.catch(e => {
|
||||
this.notifyError("Something went wrong")
|
||||
console.log({e})
|
||||
this.notifyError("Something went wrong");
|
||||
});
|
||||
},
|
||||
},
|
||||
|
|
|
@ -110,7 +110,6 @@ export default {
|
|||
custom_fields: this.formatCustomFields(this.customFields, this.custom_fields),
|
||||
};
|
||||
|
||||
console.log(data);
|
||||
this.$axios
|
||||
.put(`/clients/${this.client.id}/client/`, data)
|
||||
.then(r => {
|
||||
|
|
|
@ -235,7 +235,6 @@ export default {
|
|||
})
|
||||
.catch(e => {
|
||||
this.$q.loading.hide();
|
||||
console.log({ e });
|
||||
this.notifyError("There was an error adding the custom field");
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue