diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-02-25 13:37:52 +0000 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-02-25 13:37:52 +0000 |
| commit | e561125e5be2c02095dfe8f4557f6b9a6676b588 (patch) | |
| tree | d5caa469e03dcd577ccd705ebb84ba27e9a12996 /main.js | |
| parent | 1c9e90c1619d56f199c119874d09263acd827b07 (diff) | |
| download | sql-plus-plus-e561125e5be2c02095dfe8f4557f6b9a6676b588.tar.xz sql-plus-plus-e561125e5be2c02095dfe8f4557f6b9a6676b588.zip | |
Set connection title to host:port if name not set
Diffstat (limited to 'main.js')
| -rw-r--r-- | main.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -97,7 +97,7 @@ ipcMain.on("queryExecutor.initialiseConnectionCallback", (event, payload) => { queryExecutors.pop().close(); } else{ - uiWindow.webContents.send("instanceManager.registerNewInstance", { assignedQueryExecutorId: payload.executorId, connectionName: connectionConfig.name }); + uiWindow.webContents.send("instanceManager.registerNewInstance", { assignedQueryExecutorId: payload.executorId, connectionConfig: connectionConfig }); newConnectionDialog.close(); } } |