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