Skip to content

Commit

Permalink
Merge pull request DSpace#3243 from tdonohue/fix_lint_error
Browse files Browse the repository at this point in the history
Fix lint error regarding missing interface
  • Loading branch information
tdonohue authored Aug 9, 2024
2 parents fd7fb5d + ad6a943 commit ee7e835
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
NgIf,
} from '@angular/common';
import {
AfterViewInit,
Component,
Input,
OnDestroy,
Expand Down Expand Up @@ -51,7 +52,7 @@ import { SuggestionTargetsStateService } from '../suggestion-targets.state.servi
],
standalone: true,
})
export class PublicationClaimComponent implements OnDestroy, OnInit {
export class PublicationClaimComponent implements AfterViewInit, OnDestroy, OnInit {

/**
* The source for which to list targets
Expand Down

0 comments on commit ee7e835

Please sign in to comment.