From 4da9b6587d7c80b045f895d9873fdc3e89b616ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Fri, 23 Dec 2022 11:30:40 +0100 Subject: [PATCH] DX: remove console comment in file Person.vue --- .../Resources/public/vuejs/_components/OnTheFly/Person.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Bundle/ChillPersonBundle/Resources/public/vuejs/_components/OnTheFly/Person.vue b/src/Bundle/ChillPersonBundle/Resources/public/vuejs/_components/OnTheFly/Person.vue index 34eddad5b..16a76c780 100644 --- a/src/Bundle/ChillPersonBundle/Resources/public/vuejs/_components/OnTheFly/Person.vue +++ b/src/Bundle/ChillPersonBundle/Resources/public/vuejs/_components/OnTheFly/Person.vue @@ -329,11 +329,12 @@ export default { if (this.action !== 'create') { this.loadData(); } else { + console.log('show centers', this.showCenters); getCentersForPersonCreation() .then(params => { this.config.centers = params.centers; this.showCenters = params.showCenters; - + console.log('show centers inside', this.showCenters); if (this.showCenters && this.config.centers.length === 1) { this.person.center = this.config.centers[0]; }