Skip to content

Commit

Permalink
Make requested changes
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew W. Harn <[email protected]>
  • Loading branch information
awharn committed Nov 18, 2024
1 parent 31282ba commit c98e0c0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/zowe-explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ All notable changes to the "vscode-extension-for-zowe" extension will be documen
- Power users and developers can now build links to efficiently open mainframe resources in Zowe Explorer. Use the **Copy External Link** option in the context menu to get the URL for a data set or USS resource, or create a link in the format `vscode://Zowe.vscode-extension-for-zowe?<ZoweResourceUri>`. For more information on building resource URIs, see the [FileSystemProvider wiki article](https://github.com/zowe/zowe-explorer-vscode/wiki/FileSystemProvider#file-paths-vs-uris). [#3271](https://github.com/zowe/zowe-explorer-vscode/pull/3271)
- Implemented more user-friendly error messages for API or network errors within Zowe Explorer. [#3243](https://github.com/zowe/zowe-explorer-vscode/pull/3243)
- Use the "Troubleshoot" option for certain errors to obtain additional context, tips, and resources for how to resolve the errors. [#3243](https://github.com/zowe/zowe-explorer-vscode/pull/3243)
- Added the ability to `Search Filtered Data Sets` on Data Set session nodes, as well as the ability to `Search PDS Members` on Partitioned Data Sets. This enables users to easily search for data inside of their Data Sets. [#3306](https://github.com/zowe/zowe-explorer-vscode/pull/3306)
- Easily search for data in filtered data sets and partitioned data sets with the new `Search Filtered Data Sets` and `Search PDS Members` functionality. [#3306](https://github.com/zowe/zowe-explorer-vscode/pull/3306)

### Bug fixes

Expand Down
8 changes: 4 additions & 4 deletions packages/zowe-explorer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Review the following use cases and their procedures to understand how to work wi
- [View and access multiple profiles simultaneously](#view-and-access-multiple-profiles-simultaneously): Work with data sets from multiple profiles.
- [Submit a JCL](#submit-a-jcl): You can submit a jcl from a chose data set.
- [Allocate Like](#allocate-like): Create a copy of a chosen data set with the same parameters.
- [Search a Partitioned Data Set](#search-a-partitioned-data-set): Search all of a partitioned data set's members for a string of text.
- [Search a Partitioned Data Set](#search-a-partitioned-data-set): Search all of a partitioned data set's members with a string of text.

## Prerequisite tasks

Expand Down Expand Up @@ -443,9 +443,9 @@ As a result, VS Code extensions like Zowe Explorer, Zowe Explorer CICS Extension
1. Navigate to the **Side Bar**
1. Open the **DATA SETS** bar.
1. Right-click a partitioned data set and select the **Search PDS Members** option.
1. When prompted, type in the string to search the PDS members for.
- A confirmation dialog will appear if there are a large number of members to search.
1. A table will appear with the search results.
1. When prompted, enter the string to be used for the search.
- A confirmation dialog appears if there is a large number of members to search.
1. A table displays the search results.
- Each search result can be selected to open the member at the location of the search term.

[Back to sample list](#sample-use-cases)
2 changes: 1 addition & 1 deletion packages/zowe-explorer/src/trees/dataset/DatasetActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1802,7 +1802,7 @@ export class DatasetActions {
}
);

// Either the user cancelled the search, or a catestrophic error occurred and error handling has already been done.
// Either the user cancelled the search, or a catastrophic error occurred and error handling has already been done.
if (response === undefined) {
return;
}
Expand Down

0 comments on commit c98e0c0

Please sign in to comment.