mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 18:56:00 +00:00
editable connection
This commit is contained in:
@@ -36,16 +36,19 @@
|
||||
export let connection;
|
||||
export let tabid;
|
||||
export let conid;
|
||||
export let connectionStore = undefined;
|
||||
|
||||
let isTesting;
|
||||
let sqlConnectResult;
|
||||
|
||||
const values = writable(
|
||||
connection || {
|
||||
server: getCurrentConfig().isDocker ? 'dockerhost' : 'localhost',
|
||||
engine: '',
|
||||
}
|
||||
);
|
||||
const values =
|
||||
connectionStore ||
|
||||
writable(
|
||||
connection || {
|
||||
server: getCurrentConfig().isDocker ? 'dockerhost' : 'localhost',
|
||||
engine: '',
|
||||
}
|
||||
);
|
||||
|
||||
// $: console.log('ConnectionTab.$values', $values);
|
||||
// $: console.log('ConnectionTab.driver', driver);
|
||||
|
||||
Reference in New Issue
Block a user