mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
ISSUE10685 - Edits schemaCompareDialog to show connectionName if provided (#15152)
* ISSUE10685 - Edits schemaCompareDialog to show connectionName if provided * ISSUE10685 - Edits to not show user if connectionName * ISSUE10685 - Shows connection name is schema compare launched from db * ISSUE10685 - Shows connection name in schema compare window * ISSUE10685 - Edits utils tests * ISSUE10685 - Edits schemaCompare test * ISSUE10685 - Adds/Edits specs * ISSUE10685 - Changes let to const
This commit is contained in:
committed by
GitHub
parent
463ea0b46b
commit
3e4f687862
@@ -98,7 +98,7 @@ export class SchemaCompareMainWindow {
|
||||
|
||||
this.sourceEndpointInfo = {
|
||||
endpointType: mssql.SchemaCompareEndpointType.Database,
|
||||
serverDisplayName: `${profile.serverName} (${usr})`,
|
||||
serverDisplayName: profile.connectionName ? profile.connectionName : profile.serverName,
|
||||
serverName: profile.serverName,
|
||||
databaseName: profile.databaseName,
|
||||
ownerUri: ownerUri,
|
||||
|
||||
Reference in New Issue
Block a user