Skip to content

Commit 9b25ea0

Browse files
ehelmsofedoren
authored andcommitted
Fixes #38734: fixes copy-paste error in buildHostQuery.js
Signed-off-by: Eric D. Helms <ericdhelms@gmail.com>
1 parent 493ffbc commit 9b25ea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webpack/JobWizard/steps/HostsAndInputs/buildHostQuery.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const buildHostQuery = (selected, search) => {
1818
.join(',')})`;
1919

2020
let hostGroupsSearch;
21-
if (hostCollections.length < MAX_NAME_ITEMS)
21+
if (hostGroups.length < MAX_NAME_ITEMS)
2222
hostGroupsSearch = `hostgroup_fullname ^ (${hostGroups
2323
.map(({ name }) => nameEscape(name))
2424
.join(',')})`;

0 commit comments

Comments
 (0)