Skip to content

Commit

Permalink
Merge pull request #3163 from zowe/fix/fav-search/open-ps
Browse files Browse the repository at this point in the history
fix: Add context to PS nodes (support opening within favorited search)
  • Loading branch information
JillieBeanSim authored Oct 3, 2024
2 parents 27836ed + bc7680e commit 77235a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/zowe-explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ All notable changes to the "vscode-extension-for-zowe" extension will be documen

### Bug fixes

- Fixed an issue where opening sequential data sets within favorited searches resulted in an error. [#3163](https://github.com/zowe/zowe-explorer-vscode/pull/3163)

## `3.0.0`

### New features and enhancements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ export class ZoweDatasetNode extends ZoweTreeNode implements IZoweDatasetTreeNod
parentNode: this,
encoding: cachedEncoding,
profile: cachedProfile,
contextOverride: cachedEncoding?.kind === "binary" ? Constants.DS_DS_BINARY_CONTEXT : Constants.DS_DS_CONTEXT,
});
elementChildren[dsNode.label.toString()] = dsNode;
} else if (item.member) {
Expand Down

0 comments on commit 77235a3

Please sign in to comment.