Skip to content

Commit

Permalink
Update packages/console/src/ConsoleObjectsMenu.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: Matthew Runyon <mattrunyonstuff@gmail.com>
  • Loading branch information
mofojed and mattrunyon authored May 15, 2024
1 parent 6d6216a commit b235d4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/console/src/ConsoleObjectsMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function ConsoleObjectsMenu({
? objects.filter(
({ title }: { title?: string }) =>
title != null &&
title.toLowerCase().indexOf(filterText.toLowerCase()) >= 0
title.toLowerCase().includes(filterText.toLowerCase())
)
: objects;
const objectActions = filteredObjects.map(object => ({
Expand Down

0 comments on commit b235d4d

Please sign in to comment.