mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
Fix Safari's thrown error (#3155)
This commit is contained in:
committed by
Eugenio Romano
parent
813d189ae4
commit
89b56e9e66
@@ -28,7 +28,10 @@ import { sidenavAnimation, contentAnimation } from '../../helpers/animations';
|
||||
export class LayoutContainerComponent implements OnInit, OnDestroy {
|
||||
@Input() sidenavMin: number;
|
||||
@Input() sidenavMax: number;
|
||||
@Input() mediaQueryList: MediaQueryList;
|
||||
|
||||
// " | any", because Safari throws an error otherwise...
|
||||
@Input() mediaQueryList: MediaQueryList | any;
|
||||
|
||||
@Input() hideSidenav = false;
|
||||
@Input() expandedSidenav = true;
|
||||
|
||||
|
Reference in New Issue
Block a user