diff --git a/package.json b/package.json index 087390bca..630248726 100644 --- a/package.json +++ b/package.json @@ -880,8 +880,8 @@ "mdb.connectionSaving.defaultConnectionSavingLocation": { "type": "string", "enum": [ - "Workspace", "Global", + "Workspace", "Session Only" ], "enumDescriptions": [ diff --git a/src/explorer/explorerTreeController.ts b/src/explorer/explorerTreeController.ts index 59e613d46..5741b074f 100644 --- a/src/explorer/explorerTreeController.ts +++ b/src/explorer/explorerTreeController.ts @@ -1,14 +1,14 @@ import * as vscode from 'vscode'; import ConnectionController, { - DataServiceEventTypes + DataServiceEventTypes, + StoreConnectionInfo } from '../connectionController'; import ConnectionTreeItem from './connectionTreeItem'; import { createLogger } from '../logging'; import { DOCUMENT_ITEM } from './documentTreeItem'; import { DOCUMENT_LIST_ITEM, CollectionTypes } from './documentListTreeItem'; import EXTENSION_COMMANDS from '../commands'; -import { StoreConnectionInfo } from '../connectionController'; import { sortTreeItemsByLabel } from './treeItemUtils'; const log = createLogger('explorer controller');