From 1af3e4c7ec465b4ba46e181de415aa501bbcca6b Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Tue, 18 Mar 2025 14:39:19 +0100 Subject: [PATCH] Eslint fixes and phpcs fixer --- .../public/module/pick-entity/index.js | 4 +- .../public/vuejs/PickEntity/PickEntity.vue | 37 ++++++++++++------- .../ReferrerFilter.php | 1 - 3 files changed, 26 insertions(+), 16 deletions(-) diff --git a/src/Bundle/ChillMainBundle/Resources/public/module/pick-entity/index.js b/src/Bundle/ChillMainBundle/Resources/public/module/pick-entity/index.js index 1f89002fe..9f6bb753e 100644 --- a/src/Bundle/ChillMainBundle/Resources/public/module/pick-entity/index.js +++ b/src/Bundle/ChillMainBundle/Resources/public/module/pick-entity/index.js @@ -68,7 +68,7 @@ function loadDynamicPicker(element) { as_id, submit_on_adding_new_entity, label, - isCurrentUserPicker + isCurrentUserPicker, }; }, computed: { @@ -97,7 +97,7 @@ function loadDynamicPicker(element) { const ids = this.picked.map((el) => el.id); input.value = ids.join(","); } - console.log(this.picked) + console.log(this.picked); // console.log(entity); } } else { diff --git a/src/Bundle/ChillMainBundle/Resources/public/vuejs/PickEntity/PickEntity.vue b/src/Bundle/ChillMainBundle/Resources/public/vuejs/PickEntity/PickEntity.vue index 3660e0320..850db686c 100644 --- a/src/Bundle/ChillMainBundle/Resources/public/vuejs/PickEntity/PickEntity.vue +++ b/src/Bundle/ChillMainBundle/Resources/public/vuejs/PickEntity/PickEntity.vue @@ -1,7 +1,11 @@