added missing interfaces

(cherry picked from commit 96748b9bac)
This commit is contained in:
Sascha Szott
2024-03-20 11:39:17 +01:00
committed by github-actions[bot]
parent 19f688185d
commit 85a3578458
31 changed files with 126 additions and 67 deletions

View File

@@ -5,6 +5,7 @@ import {
import {
Component,
Input,
OnInit,
} from '@angular/core';
import { TranslateModule } from '@ngx-translate/core';
import { Observable } from 'rxjs';
@@ -28,7 +29,7 @@ import { IdentifierData } from './identifier-data.model';
/**
* Component rendering an identifier, eg. DOI or handle
*/
export class IdentifierDataComponent {
export class IdentifierDataComponent implements OnInit {
@Input() item: Item;
identifiers$: Observable<IdentifierData>;