Skip to content

Commit

Permalink
Import missing type (#116-2)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Sep 6, 2024
1 parent c96a3ed commit a071a32
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/controllers/ExtensionController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ import type {
IPanelService,
IServerManager,
IToastService,
ServerConnectionPanelNode,
ServerConnectionPanelTreeView,
ServerConnectionTreeView,
ServerState,
Expand Down Expand Up @@ -371,12 +372,12 @@ export class ExtensionController implements Disposable {
);
this._serverConnectionPanelTreeView =
vscode.window.createTreeView<ServerConnectionPanelNode>(
VIEW_ID.serverConnectionPanelTree,
{
showCollapseAll: true,
treeDataProvider: this._serverConnectionPanelTreeProvider,
}
);
VIEW_ID.serverConnectionPanelTree,
{
showCollapseAll: true,
treeDataProvider: this._serverConnectionPanelTreeProvider,
}
);

this._context.subscriptions.push(
this._serverTreeView,
Expand Down

0 comments on commit a071a32

Please sign in to comment.