Skip to content

Commit

Permalink
Merge pull request #2658 from jellypuno/fix-issue-2562
Browse files Browse the repository at this point in the history
Fix Issue 2562: Change the value of the variable JobId from Job ID to JobId
  • Loading branch information
traeok authored Jan 11, 2024
2 parents df1355a + e4537e6 commit 2b723f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions 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 @@ -18,6 +18,7 @@ All notable changes to the "vscode-extension-for-zowe" extension will be documen
- Fixed failure to refresh token value after user logs in to authentication. [#2638](https://github.com/zowe/vscode-extension-for-zowe/issues/2638)
- Fixed order of spool files reverses when the Job is expanded and collapsed. [#2644](https://github.com/zowe/vscode-extension-for-zowe/pull/2644)
- Fixed local filtering of jobs to work with SMFID (exec-member field). [#2651](https://github.com/zowe/vscode-extension-for-zowe/pull/2651)
- Fixed the recent search job id filter. [#2562](https://github.com/zowe/vscode-extension-for-zowe/issues/2562)

## `2.13.1`

Expand Down
2 changes: 1 addition & 1 deletion packages/zowe-explorer/src/job/ZosJobsProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export async function createJobsTree(log: imperative.Logger): Promise<ZosJobsPro
}

export class ZosJobsProvider extends ZoweTreeProvider implements IZoweTree<IZoweJobTreeNode> {
public static readonly JobId = "Job ID: ";
public static readonly JobId = "JobId: ";
public static readonly Owner = "Owner: ";
public static readonly Prefix = "Prefix: ";
public static readonly Status = "Status: ";
Expand Down

0 comments on commit 2b723f3

Please sign in to comment.