From 61a13cf34213b6ae22243ee2a27f0ac4a0175499 Mon Sep 17 00:00:00 2001 From: cy_altern Date: Thu, 3 Mar 2022 21:45:22 +0100 Subject: [PATCH] =?UTF-8?q?tentative=20de=20patch=20pour=20ne=20plus=20att?= =?UTF-8?q?raper=20les=20entr=C3=A9es=20vides=20lors=20d'un=20filtrage=20d?= =?UTF-8?q?e=20colonne=20par=20select?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/gamutable.es6.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/gamutable.es6.js b/js/gamutable.es6.js index 9455dfa..7f406e4 100644 --- a/js/gamutable.es6.js +++ b/js/gamutable.es6.js @@ -276,7 +276,7 @@ let monTableau = { Object.keys(this.filtreColSelected).forEach((colName) => { if (rsearch) { let colValue = this.filtreColSelected[colName]; - if (colValue !== null) { + if (colValue !== null && colValue !== '') { if (!Array.isArray(colValue)) { colValue = [colValue]; }