mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
a few fixes for dacpac extension (#10595)
This commit is contained in:
@@ -76,7 +76,14 @@ export abstract class BasePage {
|
||||
usr = loc.defaultText;
|
||||
}
|
||||
|
||||
let finalName = `${srv} (${usr})`;
|
||||
let finalName;
|
||||
// show connection name if there is one
|
||||
if (c.options.connectionName) {
|
||||
finalName = `${c.options.connectionName}`;
|
||||
} else {
|
||||
finalName = `${srv} (${usr})`;
|
||||
}
|
||||
|
||||
return {
|
||||
connection: c,
|
||||
displayName: finalName,
|
||||
|
||||
Reference in New Issue
Block a user