Skip to content

Commit

Permalink
fix: correct order of enum docs (#426)
Browse files Browse the repository at this point in the history
* fix: correct order of enum docs

* chore: merge imports
  • Loading branch information
SethFalco authored Jul 11, 2022
1 parent 3137a12 commit c10a890
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -880,8 +880,8 @@
"mdb.connectionSaving.defaultConnectionSavingLocation": {
"type": "string",
"enum": [
"Workspace",
"Global",
"Workspace",
"Session Only"
],
"enumDescriptions": [
Expand Down
4 changes: 2 additions & 2 deletions src/explorer/explorerTreeController.ts
Original file line number Diff line number Diff line change
@@ -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');
Expand Down

0 comments on commit c10a890

Please sign in to comment.