Skip to content

Commit

Permalink
Tidy up interface declarations.
Browse files Browse the repository at this point in the history
  • Loading branch information
mwoodiupui committed Apr 21, 2023
1 parent 4847fc6 commit 4f83eaa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ChangeDetectorRef, Component, Input, OnChanges, OnInit, ViewChild } from '@angular/core';
import { ChangeDetectorRef, Component, Input, OnChanges, OnDestroy, OnInit, ViewChild } from '@angular/core';

import { BehaviorSubject, Subscription } from 'rxjs';
import { filter } from 'rxjs/operators';
Expand Down Expand Up @@ -27,7 +27,7 @@ import { NgbModalOptions } from '@ng-bootstrap/ng-bootstrap/modal/modal-config';
styleUrls: ['./section-upload-file.component.scss'],
templateUrl: './section-upload-file.component.html',
})
export class SubmissionSectionUploadFileComponent implements OnChanges, OnInit {
export class SubmissionSectionUploadFileComponent implements OnChanges, OnInit, OnDestroy {

/**
* The list of available access condition
Expand Down

0 comments on commit 4f83eaa

Please sign in to comment.