mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
[DURACOM-191] fix linting
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Component, Input, Output, EventEmitter } from '@angular/core';
|
||||
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
||||
import { ThemedComponent } from '../theme-support/themed.component';
|
||||
import { BrowseByComponent } from './browse-by.component';
|
||||
import { Observable } from 'rxjs';
|
||||
@@ -6,7 +6,7 @@ import { RemoteData } from '../../core/data/remote-data';
|
||||
import { PaginatedList } from '../../core/data/paginated-list.model';
|
||||
import { ListableObject } from '../object-collection/shared/listable-object.model';
|
||||
import { PaginationComponentOptions } from '../pagination/pagination-component-options.model';
|
||||
import { SortOptions, SortDirection } from '../../core/cache/models/sort-options.model';
|
||||
import { SortDirection, SortOptions } from '../../core/cache/models/sort-options.model';
|
||||
import { StartsWithType } from '../starts-with/starts-with-decorator';
|
||||
|
||||
/**
|
||||
@@ -16,7 +16,7 @@ import { StartsWithType } from '../starts-with/starts-with-decorator';
|
||||
selector: 'ds-themed-browse-by',
|
||||
styleUrls: [],
|
||||
templateUrl: '../theme-support/themed.component.html',
|
||||
standalone:true
|
||||
standalone: true
|
||||
})
|
||||
export class ThemedBrowseByComponent extends ThemedComponent<BrowseByComponent> {
|
||||
|
||||
|
@@ -8,15 +8,23 @@ import {
|
||||
} from '../../../../../../../app/entity-groups/research-entities/item-pages/person/person.component';
|
||||
import { Context } from '../../../../../../../app/core/shared/context.model';
|
||||
import { AsyncPipe, NgIf } from '@angular/common';
|
||||
import { ThemedResultsBackButtonComponent } from 'src/app/shared/results-back-button/themed-results-back-button.component';
|
||||
import { ThemedItemPageTitleFieldComponent } from 'src/app/item-page/simple/field-components/specific-field/title/themed-item-page-field.component';
|
||||
import {
|
||||
ThemedResultsBackButtonComponent
|
||||
} from 'src/app/shared/results-back-button/themed-results-back-button.component';
|
||||
import {
|
||||
ThemedItemPageTitleFieldComponent
|
||||
} from 'src/app/item-page/simple/field-components/specific-field/title/themed-item-page-field.component';
|
||||
import { DsoEditMenuComponent } from 'src/app/shared/dso-page/dso-edit-menu/dso-edit-menu.component';
|
||||
import { MetadataFieldWrapperComponent } from 'src/app/shared/metadata-field-wrapper/metadata-field-wrapper.component';
|
||||
import { ThemedThumbnailComponent } from 'src/app/thumbnail/themed-thumbnail.component';
|
||||
import { GenericItemPageFieldComponent } from 'src/app/item-page/simple/field-components/specific-field/generic/generic-item-page-field.component';
|
||||
import {
|
||||
GenericItemPageFieldComponent
|
||||
} from 'src/app/item-page/simple/field-components/specific-field/generic/generic-item-page-field.component';
|
||||
import { RelatedItemsComponent } from 'src/app/item-page/simple/related-items/related-items-component';
|
||||
import { RouterLink } from '@angular/router';
|
||||
import { TabbedRelatedEntitiesSearchComponent } from 'src/app/item-page/simple/related-entities/tabbed-related-entities-search/tabbed-related-entities-search.component';
|
||||
import {
|
||||
TabbedRelatedEntitiesSearchComponent
|
||||
} from 'src/app/item-page/simple/related-entities/tabbed-related-entities-search/tabbed-related-entities-search.component';
|
||||
import { TranslateModule } from '@ngx-translate/core';
|
||||
|
||||
@listableObjectComponent('Person', ViewMode.StandalonePage, Context.Any, 'custom')
|
||||
@@ -26,7 +34,7 @@ import { TranslateModule } from '@ngx-translate/core';
|
||||
styleUrls: ['../../../../../../../app/entity-groups/research-entities/item-pages/person/person.component.scss'],
|
||||
// templateUrl: './person.component.html',
|
||||
templateUrl: '../../../../../../../app/entity-groups/research-entities/item-pages/person/person.component.html',
|
||||
standalone:true,
|
||||
standalone: true,
|
||||
imports: [NgIf, ThemedResultsBackButtonComponent, ThemedItemPageTitleFieldComponent, DsoEditMenuComponent, MetadataFieldWrapperComponent, ThemedThumbnailComponent, GenericItemPageFieldComponent, RelatedItemsComponent, RouterLink, TabbedRelatedEntitiesSearchComponent, AsyncPipe, TranslateModule]
|
||||
})
|
||||
export class PersonComponent extends BaseComponent {
|
||||
|
Reference in New Issue
Block a user