add missing app instance types (#6513)

This commit is contained in:
Denys Vuika
2021-01-08 16:41:00 +00:00
committed by GitHub
parent 6f937a75ec
commit c46bbaac47
8 changed files with 53 additions and 54 deletions

View File

@@ -44,7 +44,7 @@ export class AppListCloudComponent implements OnInit, AfterContentInit {
/** Emitted when an app entry is clicked. */
@Output()
appClick: EventEmitter<ApplicationInstanceModel> = new EventEmitter<ApplicationInstanceModel>();
appClick = new EventEmitter<ApplicationInstanceModel>();
apps$: Observable<any>;
loadingError$ = new Subject<boolean>();
@@ -104,7 +104,6 @@ export class AppListCloudComponent implements OnInit, AfterContentInit {
* Return true if the layout type is GRID
*/
isGrid(): boolean {
return this.layoutType === AppListCloudComponent.LAYOUT_GRID;
}
}