File tree 2 files changed +10
-6
lines changed
portal/src/app/pages/dashboard
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
4
4
< mat-accordion *ngFor ="let systemGroup of systemGroups " multi >
5
- < mat-expansion-panel >
5
+ < mat-expansion-panel (afterExpand) =" getSystem($event) " >
6
6
<!-- Header -->
7
7
< mat-expansion-panel-header >
8
8
< mat-panel-title >
9
9
{{systemGroup.name}}
10
10
</ mat-panel-title >
11
11
</ mat-expansion-panel-header >
12
12
13
+ < mat-panel-description >
14
+
15
+ </ mat-panel-description >
16
+
13
17
</ mat-expansion-panel >
14
18
<!--
15
19
<mat-expansion-panel-header>
16
20
17
- <mat-panel-description>
18
- Type your name and age
19
- <mat-icon>account_circle</mat-icon>
20
- </mat-panel-description>
21
- </mat-expansion-panel-header>
21
+
22
22
-->
23
23
</ mat-accordion >
24
24
</ mat-grid-list >
Original file line number Diff line number Diff line change @@ -19,4 +19,8 @@ export class DashboardComponent {
19
19
console . log ( "CALLED" ) ;
20
20
this . systemGroups = await this . systemService . getSystemGroups ( ) ;
21
21
}
22
+
23
+ getSystem ( event : any ) {
24
+ console . log ( event ) ;
25
+ }
22
26
}
You can’t perform that action at this time.
0 commit comments