Skip to content

Commit bccea25

Browse files
committed
Improved adapter search logic
1 parent e824a1b commit bccea25

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

source/frontend/assets/js/website_report_viewer.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ function FilterSingleReport(wrappedReport) {
2626
let value = report.GetField(collumn)
2727
let humanReadableValue = Properties.MakeHumanReadable(collumn, value).toString().toLowerCase()
2828
value = value.toString().toLowerCase()
29-
return value.includes(adaptersSearchString)
30-
|| humanReadableValue.includes(adaptersSearchString)
29+
return humanReadableValue.includes(adaptersSearchString)
3130
})
3231
let filterTest = Constants.FilterMultichoiceFields.every(filter => {
3332
let value = report.GetField(filter)

source/website/shared.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)