tentative de patch pour ne plus attraper les entrées vides lors d'un filtrage de colonne par select
This commit is contained in:
parent
368469bd3e
commit
61a13cf342
1 changed files with 1 additions and 1 deletions
|
@ -276,7 +276,7 @@ let monTableau = {
|
||||||
Object.keys(this.filtreColSelected).forEach((colName) => {
|
Object.keys(this.filtreColSelected).forEach((colName) => {
|
||||||
if (rsearch) {
|
if (rsearch) {
|
||||||
let colValue = this.filtreColSelected[colName];
|
let colValue = this.filtreColSelected[colName];
|
||||||
if (colValue !== null) {
|
if (colValue !== null && colValue !== '') {
|
||||||
if (!Array.isArray(colValue)) {
|
if (!Array.isArray(colValue)) {
|
||||||
colValue = [colValue];
|
colValue = [colValue];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue