Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into fix/zeapi-direct-token
Browse files Browse the repository at this point in the history
  • Loading branch information
JillieBeanSim committed Feb 14, 2025
2 parents 1ba38f3 + 1233383 commit 3ef7596
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 2 additions & 0 deletions packages/zowe-explorer-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ All notable changes to the "zowe-explorer-api" extension will be documented in t

### Bug fixes

- Fixes an issue where properties of the `TableViewProvider` class were not accessible when the class was extended by developers. [#3456](https://github.com/zowe/zowe-explorer-vscode/pull/3456)

## `3.1.0`

### New features and enhancements
Expand Down
8 changes: 3 additions & 5 deletions packages/zowe-explorer-api/src/vscode/ui/TableViewProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,10 @@ import { Table } from "./TableView";
* the "Zowe Resources" panel and is therefore not supported.
*/
export class TableViewProvider implements WebviewViewProvider {
private view?: WebviewView;
private tableView: Table.Instance = null;
protected view?: WebviewView;
protected tableView: Table.Instance = null;

private static instance: TableViewProvider;

private constructor() {}
protected static instance: TableViewProvider;

/**
* Retrieve the singleton instance of the TableViewProvider.
Expand Down

0 comments on commit 3ef7596

Please sign in to comment.