While not strictly required in rel_3_6 and above, rel_3_5 uses
a version of Angular that requires specifying a value for the
static parameter when using the ViewChild decorator on an object.
Signed-off-by: Jason Boyer <JBoyer@equinoxinitiative.org>
@ViewChild('confirmCancelReservationDialog', { static: true })
private cancelReservationDialog: CancelReservationDialogComponent;
- @ViewChild('pullList') private pullList: GridComponent;
+ @ViewChild('pullList', { static: true }) private pullList: GridComponent;
public dataSource: GridDataSource = new GridDataSource();