diff --git a/src/Bundle/ChillMainBundle/Resources/public/lib/api/apiMethods.js b/src/Bundle/ChillMainBundle/Resources/public/lib/api/apiMethods.js index 67f3e2f42..7bfd1071c 100644 --- a/src/Bundle/ChillMainBundle/Resources/public/lib/api/apiMethods.js +++ b/src/Bundle/ChillMainBundle/Resources/public/lib/api/apiMethods.js @@ -11,19 +11,16 @@ const makeFetch = (method, url, body) => { }) .then(response => { if (response.ok) { - console.log('200 error') return response.json(); } if (response.status === 422) { - console.log('422 error') return response.json().then(response => { throw ValidationException(response) }); } if (response.status === 403) { - console.log('403 error') throw AccessException(response); } diff --git a/src/Bundle/ChillMainBundle/Resources/public/vuejs/OnTheFly/components/OnTheFly.vue b/src/Bundle/ChillMainBundle/Resources/public/vuejs/OnTheFly/components/OnTheFly.vue index 5528d563e..4ef6192f1 100644 --- a/src/Bundle/ChillMainBundle/Resources/public/vuejs/OnTheFly/components/OnTheFly.vue +++ b/src/Bundle/ChillMainBundle/Resources/public/vuejs/OnTheFly/components/OnTheFly.vue @@ -223,7 +223,7 @@ export default { default: if (typeof this.type === 'undefined') { // action=create or addContact - console.log('will rewrite data'); + console.log('will rewrite data'); if (this.action === 'addContact') { type = 'thirdparty' data = this.$refs.castThirdparty.$data.thirdparty; @@ -238,8 +238,6 @@ export default { throw 'error with object type'; } } - console.log('type', type); - console.log('data', data); // pass datas to parent this.$emit('saveFormOnTheFly', { type: type, data: data }); }, diff --git a/src/Bundle/ChillMainBundle/Resources/public/vuejs/_components/Entity/AddressRenderBox.vue b/src/Bundle/ChillMainBundle/Resources/public/vuejs/_components/Entity/AddressRenderBox.vue index a7f121a87..2e88bc1cb 100644 --- a/src/Bundle/ChillMainBundle/Resources/public/vuejs/_components/Entity/AddressRenderBox.vue +++ b/src/Bundle/ChillMainBundle/Resources/public/vuejs/_components/Entity/AddressRenderBox.vue @@ -89,11 +89,9 @@ export default { return this.isMultiline === true ? "div" : "span"; }, multiline() { - //console.log(this.isMultiline, typeof this.isMultiline); return this.isMultiline === true ? "multiline" : ""; }, isConfidential() { - console.log(this.address.confidential) return this.address.confidential; } }