mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
20 lines
930 B
TypeScript
20 lines
930 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
import { renderElementsFor } from '../../../object-collection/shared/dso-element-decorator';
|
|
|
|
import { SearchResultListElementComponent } from '../search-result-list-element.component';
|
|
import { Community } from '../../../../core/shared/community.model';
|
|
import { ViewMode } from '../../../../+search-page/search-options.model';
|
|
import { CommunitySearchResult } from '../../../object-collection/shared/community-search-result.model';
|
|
|
|
@Component({
|
|
selector: 'ds-community-search-result-list-element',
|
|
styleUrls: ['../search-result-list-element.component.scss', 'community-search-result-list-element.component.scss'],
|
|
templateUrl: 'community-search-result-list-element.component.html'
|
|
})
|
|
|
|
@renderElementsFor(CommunitySearchResult, ViewMode.List)
|
|
export class CommunitySearchResultListElementComponent extends SearchResultListElementComponent<CommunitySearchResult, Community> {
|
|
|
|
}
|