Skip to content

Commit

Permalink
disable split space (#6640)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkav committed Oct 4, 2023
1 parent b24f507 commit 98d9e9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/insomnia/src/ui/routes/workspace.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export const workspaceLoader: LoaderFunction = async ({
doc.description,
...(isRequestGroup(doc) ? [] : [doc.url]),
],
{ splitSpace: true, loose: true }
{ splitSpace: false, loose: true }
)?.indexes);
const shouldHide = Boolean(filter && !isMatched(filter));
const hidden = parentIsCollapsed || shouldHide;
Expand Down

0 comments on commit 98d9e9e

Please sign in to comment.