Skip to content

Commit c89bb81

Browse files
committed
migrate workspace for @angular/[email protected]
1 parent 4b3d1c8 commit c89bb81

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/app/views/notifications/modals.component.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ import {ModalDirective} from 'ngx-bootstrap/modal';
55
templateUrl: 'modals.component.html'
66
})
77
export class ModalsComponent {
8-
@ViewChild('myModal', {static: false}) public myModal: ModalDirective;
9-
@ViewChild('largeModal', {static: false}) public largeModal: ModalDirective;
10-
@ViewChild('smallModal', {static: false}) public smallModal: ModalDirective;
11-
@ViewChild('primaryModal', {static: false}) public primaryModal: ModalDirective;
12-
@ViewChild('successModal', {static: false}) public successModal: ModalDirective;
13-
@ViewChild('warningModal', {static: false}) public warningModal: ModalDirective;
14-
@ViewChild('dangerModal', {static: false}) public dangerModal: ModalDirective;
15-
@ViewChild('infoModal', {static: false}) public infoModal: ModalDirective;
8+
@ViewChild('myModal') public myModal: ModalDirective;
9+
@ViewChild('largeModal') public largeModal: ModalDirective;
10+
@ViewChild('smallModal') public smallModal: ModalDirective;
11+
@ViewChild('primaryModal') public primaryModal: ModalDirective;
12+
@ViewChild('successModal') public successModal: ModalDirective;
13+
@ViewChild('warningModal') public warningModal: ModalDirective;
14+
@ViewChild('dangerModal') public dangerModal: ModalDirective;
15+
@ViewChild('infoModal') public infoModal: ModalDirective;
1616
}

0 commit comments

Comments
 (0)