Skip to content

Commit

Permalink
Merge pull request #2631 from zowe/Allocate-like-bug
Browse files Browse the repository at this point in the history
Allocate-like to exclude DS items from the filter history.
  • Loading branch information
traeok authored Dec 19, 2023
2 parents 14452fb + 331c0fe commit 94db84d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions packages/zowe-explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ All notable changes to the "vscode-extension-for-zowe" extension will be documen

### Bug fixes

- Fixed the allocate-like functionality by removing the inclusion of DS item in the filter history. [#2620](https://github.com/zowe/vscode-extension-for-zowe/issues/2620)
- Fixed issue with `Submit JCL` losing focus on JCL being submitted, causing the wrong job submission. [#2616](https://github.com/zowe/vscode-extension-for-zowe/issues/2616)

## `2.13.0`
Expand Down
1 change: 0 additions & 1 deletion packages/zowe-explorer/src/dataset/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ export async function allocateLike(datasetProvider: api.IZoweTree<api.IZoweDatas

const theFilter = datasetProvider.createFilterString(newDSName, currSession);
currSession.tooltip = currSession.pattern = theFilter.toUpperCase();
datasetProvider.addSearchHistory(theFilter);
datasetProvider.refresh();
currSession.dirty = true;
datasetProvider.refreshElement(currSession);
Expand Down

0 comments on commit 94db84d

Please sign in to comment.