Skip to content

Commit

Permalink
Add support for tab_name in connection via deeplink
Browse files Browse the repository at this point in the history
  • Loading branch information
Paxa committed Aug 29, 2021
1 parent deef0bb commit 5a87d8e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,11 @@ global.App = {
if (typeof options == 'string') {
options = Connection.parseConnectionString(options);
if (!connectionName) {
connectionName = options.host;
if (options.tab_name && options.tab_name != "") {
connectionName = options.tab_name;
} else {
connectionName = options.host;
}
}
}

Expand Down

0 comments on commit 5a87d8e

Please sign in to comment.