Skip to content

Commit 915a69d

Browse files
committed
style(tree-explorer): reword default db
1 parent 181f801 commit 915a69d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"typescript.tsc.autoDetect": "off",
2020
"mdb.presetSavedConnections": [
2121
{
22-
"name": "Preset Database",
22+
"name": "Preset Local DB",
2323
"connectionString": "mongodb://localhost:27017"
2424
}
2525
]

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,7 +1200,7 @@
12001200
"examples": [
12011201
[
12021202
{
1203-
"name": "Preset Database",
1203+
"name": "Preset Local DB",
12041204
"connectionString": "mongodb://localhost:27017"
12051205
}
12061206
]
@@ -1209,7 +1209,7 @@
12091209
"type": "object",
12101210
"examples": [
12111211
{
1212-
"name": "Preset Database",
1212+
"name": "Preset Local DB",
12131213
"connectionString": "mongodb://localhost:27017"
12141214
}
12151215
],

src/connectionController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ export default class ConnectionController {
191191
source = 'workspaceSettings';
192192
await mdbConfiguration.update('presetSavedConnections', [
193193
{
194-
name: 'Preset Database',
194+
name: 'Preset Local DB',
195195
connectionString: 'mongodb://localhost:27017',
196196
},
197197
]);

0 commit comments

Comments
 (0)