Skip to content

Commit c7cf2b5

Browse files
author
Waley Chen
committed
Merge pull request #205 from 10gen/INT-778_fix-undefined-title
🐛 INT-778: Fix undefined in title bar.
2 parents 371bb1f + c573e0e commit c7cf2b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/home/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ var HomeView = View.extend({
7676
}
7777
},
7878
updateTitle: function(model) {
79-
var title = app.connection.uri;
79+
var title = 'mongodb://' + app.connection.instance_id;
8080
if (model) {
8181
title += '/' + model.getId();
8282
}

0 commit comments

Comments
 (0)