We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8de14ca commit 81c924fCopy full SHA for 81c924f
templates/report.js
@@ -260,11 +260,9 @@ let refreshTableFilter = () => {
260
reportFilter.push({field: fieldName, type: "regex", value: valueRegex});
261
} else if (value.startsWith("[") && value.endsWith("]")) {
262
let valueList= value.substring(1, value.length-1).split(",");
263
- console.log(valueList);
264
reportFilter.push({field:fieldName, type:"in", value:valueList});
265
} else {
266
// normal filter
267
- console.log("normal");
268
reportFilter.push({field:fieldName, type:"like", value:value});
269
}
270
0 commit comments