Merge pull request #1984 from dpalou/MOBILE-2930

MOBILE-2930 core: Fix compilation error in block component
main
Dani Palou 2019-07-16 10:57:03 +02:00 committed by GitHub
commit b0477ab1d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ import { CoreBlockDelegate } from '@core/block/providers/delegate';
}) })
export class CoreSitePluginsBlockComponent extends CoreBlockBaseComponent implements OnChanges { export class CoreSitePluginsBlockComponent extends CoreBlockBaseComponent implements OnChanges {
@Input() block: any; @Input() block: any;
@Input() contextLevel: number; @Input() contextLevel: string;
@Input() instanceId: number; @Input() instanceId: number;
@ViewChild(CoreSitePluginsPluginContentComponent) content: CoreSitePluginsPluginContentComponent; @ViewChild(CoreSitePluginsPluginContentComponent) content: CoreSitePluginsPluginContentComponent;