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 9d26442 commit e25d983Copy full SHA for e25d983
opencti-platform/opencti-front/src/private/components/SearchBulk.jsx
@@ -308,9 +308,7 @@ const SearchBulk = () => {
308
(o) => o.node,
309
);
310
return values.map((value) => {
311
- const resolvedStixCoreObjects = stixCoreObjects.filter(
312
- (o) => values.includes(getMainRepresentative(o).toLowerCase()),
313
- );
+ const resolvedStixCoreObjects = stixCoreObjects.filter((o) => value.toLowerCase() === getMainRepresentative(o).toLowerCase());
314
if (resolvedStixCoreObjects.length > 0) {
315
return resolvedStixCoreObjects.map(
316
(resolvedStixCoreObject) => ({
0 commit comments