Skip to content

Commit b68fc0c

Browse files
committed
🚸 Include group in docs filter
1 parent 17501ac commit b68fc0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

abm/js/infoview.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ var marlinfwSearch = (() => {
140140
odd = false;
141141
$.each(searchData, (index, item) => {
142142
// check if search term is in content or title
143-
const comp = (item.name + " " + item.title + ' ' + item.content + item.excerpt).toLowerCase();
143+
const comp = (item.name + " " + item.title + ' ' + item.group + ' ' + item.content + item.excerpt).toLowerCase();
144144
if (comp.match(qmatch)) {
145145
if (item.class != lastclass) {
146146
lastclass = item.class;

0 commit comments

Comments
 (0)