mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Change 'Server name' to 'Server' (#372)
This commit is contained in:
@@ -147,11 +147,11 @@ export class ConnectionStatusbarItem implements IStatusbarItem {
|
||||
}
|
||||
|
||||
let tooltip: string =
|
||||
'Server name: ' + connectionProfile.serverName + '\r\n' +
|
||||
'Database name: ' + (connectionProfile.databaseName ? connectionProfile.databaseName : '<default>') + '\r\n';
|
||||
'Server: ' + connectionProfile.serverName + '\r\n' +
|
||||
'Database: ' + (connectionProfile.databaseName ? connectionProfile.databaseName : '<default>') + '\r\n';
|
||||
|
||||
if (connectionProfile.userName && connectionProfile.userName !== '') {
|
||||
tooltip = tooltip + 'Login name: ' + connectionProfile.userName + '\r\n';
|
||||
tooltip = tooltip + 'Login: ' + connectionProfile.userName + '\r\n';
|
||||
}
|
||||
|
||||
this._connectionElement.textContent = text;
|
||||
|
||||
Reference in New Issue
Block a user