mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 09:35:37 -05:00
Strict null scripting (#12126)
* strict null scripting * fix compile * fix tests * fix icon
This commit is contained in:
@@ -95,7 +95,7 @@ export class DashboardInput extends EditorInput {
|
||||
|
||||
private isMasterMssql(): boolean {
|
||||
return this.connectionProfile.providerName === mssqlProviderName
|
||||
&& this.connectionProfile.databaseName.toLowerCase() === 'master';
|
||||
&& this.connectionProfile.databaseName?.toLowerCase() === 'master';
|
||||
}
|
||||
|
||||
public get uri(): string | undefined {
|
||||
|
||||
Reference in New Issue
Block a user