Skip to content

Commit 7c08fdf

Browse files
authored
Revert "fix issue #232"
1 parent bd3c4de commit 7c08fdf

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

src/app/app.component.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,3 @@ $header-height: 60px;
138138

139139
}
140140
}
141-

src/app/components/information-dialog/information-dialog.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<h1 mat-dialog-title class="title">Help
33
<button mat-icon-button [mat-dialog-close]="null"><i class="material-icons">close</i></button>
44
</h1>
5-
<div mat-dialog-content class="dialog-root" [style.display]="!isLoading ? 'block' : 'none'">
5+
<div mat-dialog-content class="dialog-root">
66
<mat-expansion-panel>
77
<mat-expansion-panel-header>
88
<mat-panel-title>

src/app/components/information-dialog/information-dialog.component.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,12 @@ import {MAT_DIALOG_DATA} from '@angular/material';
77
styleUrls: ['./information-dialog.component.scss']
88
})
99
export class InformationDialogComponent implements OnInit {
10-
isLoading = true;
1110
constructor(
1211
@Inject(MAT_DIALOG_DATA) public data) {
1312
}
1413

1514

1615
ngOnInit() {
17-
setTimeout(() => {
18-
this.isLoading = false;
19-
}, 300);
2016
}
2117

2218
}

0 commit comments

Comments
 (0)