Alanren/icon overwrite issue (#2484)

* fix the error icon too large issue

* formatting
This commit is contained in:
Alan Ren
2018-09-10 15:55:40 -07:00
committed by GitHub
parent 4ceb869420
commit 709ef4e39f
5 changed files with 15 additions and 15 deletions

View File

@@ -108,13 +108,13 @@ export class ErrorMessageDialog extends Modal {
private updateIconTitle(): void {
switch (this._severity) {
case Severity.Error:
this.titleIconClassName = 'icon error';
this.titleIconClassName = 'sql icon error';
break;
case Severity.Warning:
this.titleIconClassName = 'icon warning';
this.titleIconClassName = 'sql icon warning';
break;
case Severity.Info:
this.titleIconClassName = 'icon info';
this.titleIconClassName = 'sql icon info';
break;
}
}