Skip to content

Commit

Permalink
fix: TS linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
amolenaar committed Jan 26, 2024
1 parent eae1426 commit ec9725a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

import { Component } from '@angular/core';
import { Component, OnInit } from '@angular/core';
import { MatDialog } from '@angular/material/dialog';
import { ActivatedRoute, Router } from '@angular/router';
import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
Expand All @@ -24,7 +24,7 @@ import {
templateUrl: './project-metadata.component.html',
styleUrls: ['./project-metadata.component.css'],
})
export class ProjectMetadataComponent {
export class ProjectMetadataComponent implements OnInit {
project?: Project;
canDelete = false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
*/

import {
AfterViewInit,
Component,
ElementRef,
Inject,
OnInit,
QueryList,
ViewChildren,
} from '@angular/core';
Expand All @@ -20,7 +22,7 @@ import { ProjectAuditLogService } from 'src/app/projects/project-detail/project-
styleUrls: ['./project-audit-log.component.css'],
})
@UntilDestroy()
export class ProjectAuditLogComponent {
export class ProjectAuditLogComponent implements OnInit, AfterViewInit {
pageSize = 25;
pageSizeArray = [...Array(this.pageSize).keys()];

Expand Down

0 comments on commit ec9725a

Please sign in to comment.