Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed quick filter creation for listing libraries #1945

Merged
merged 8 commits into from
Mar 20, 2024
8 changes: 4 additions & 4 deletions src/views/objectBrowser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -494,9 +494,9 @@ export function initializeObjectBrowser(context: vscode.ExtensionContext) {
const filter = {
name: `Filter ${objectFilters.length + 1}`,
filterType: 'simple',
library: `QSYS`,
object: `${parsedFilter.lib}*`,
types: [`*LIB`],
library: `${parsedFilter.lib}*`,
object: `*`,
types: [`*ALL`],
member: `*`,
memberType: `*`,
protected: false
Expand Down Expand Up @@ -1426,4 +1426,4 @@ async function deleteObject(object: IBMiObject) {
}

return deleteResult.code === 0;
}
}