This commit is contained in:
Dániel Péter Sipos
2020-11-13 17:31:05 +01:00
parent 5923a97336
commit c377a3e45a
3 changed files with 10 additions and 10 deletions

View File

@@ -1,5 +1,4 @@
import { Component, Input } from '@angular/core';
import { Community } from '../../../core/shared/community.model';
import { AbstractListableElementComponent } from '../../object-collection/shared/object-collection-element/abstract-listable-element.component';
import { ViewMode } from '../../../core/shared/view-mode.model';
@@ -21,7 +20,7 @@ import { hasNoValue, hasValue } from '../../empty.util';
export class CommunityGridElementComponent extends AbstractListableElementComponent<Community> {
private _object: Community;
constructor( private linkService: LinkService){
constructor( private linkService: LinkService) {
super();
}