Skip to content

Commit 81c924f

Browse files
committed
remove debug
Signed-off-by: Markus Blaschke <mblaschke82@gmail.com>
1 parent 8de14ca commit 81c924f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

templates/report.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,11 +260,9 @@ let refreshTableFilter = () => {
260260
reportFilter.push({field: fieldName, type: "regex", value: valueRegex});
261261
} else if (value.startsWith("[") && value.endsWith("]")) {
262262
let valueList= value.substring(1, value.length-1).split(",");
263-
console.log(valueList);
264263
reportFilter.push({field:fieldName, type:"in", value:valueList});
265264
} else {
266265
// normal filter
267-
console.log("normal");
268266
reportFilter.push({field:fieldName, type:"like", value:value});
269267
}
270268

0 commit comments

Comments
 (0)