1
0

#150 Intermediate commit

This commit is contained in:
Jonas Van Goolen
2017-11-02 13:43:02 +01:00
parent e7e129f80f
commit 67356efaab
21 changed files with 66 additions and 64 deletions

View File

@@ -2,7 +2,8 @@ import { Component, Input, Inject } from '@angular/core';
import { Community } from '../../core/shared/community.model';
import { ObjectGridElementComponent } from '../object-grid-element/object-grid-element.component';
import { gridElementFor} from '../grid-element-decorator';
import { renderElementsFor} from '../../object-collection/shared/dso-element-decorator';
import { ViewMode } from '../../+search-page/search-options.model';
@Component({
selector: 'ds-community-grid-element',
@@ -10,5 +11,5 @@ import { gridElementFor} from '../grid-element-decorator';
templateUrl: './community-grid-element.component.html'
})
@gridElementFor(Community)
@renderElementsFor(Community, ViewMode.Grid)
export class CommunityGridElementComponent extends ObjectGridElementComponent<Community> {}