Skip to content

Commit

Permalink
fix lint error @typescript-eslint/restrict-plus-operands
Browse files Browse the repository at this point in the history
Signed-off-by: Billie Simmons <[email protected]>
  • Loading branch information
JillieBeanSim committed Jul 5, 2023
1 parent 59f93bb commit 108575d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/zowe-explorer/src/dataset/DatasetTree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1050,7 +1050,7 @@ export class DatasetTree extends ZoweTreeProvider implements IZoweTree<IZoweData
if (existing) {
child.memberPattern = item.member;
if (!child.contextValue.includes(globals.FILTER_SEARCH)) {
child.contextValue = child.contextValue + globals.FILTER_SEARCH;
child.contextValue = String(child.contextValue) + globals.FILTER_SEARCH;
}
let setIcon: IIconItem;
if (child.collapsibleState === vscode.TreeItemCollapsibleState.Collapsed) {
Expand Down

0 comments on commit 108575d

Please sign in to comment.