Skip to content

Commit

Permalink
exui-673 - remove redundant ngOnInit for this component
Browse files Browse the repository at this point in the history
  • Loading branch information
jphcdcgi committed Feb 6, 2025
1 parent 57e575e commit cebeb13
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component, EventEmitter, Output, OnInit } from "@angular/core";
import { Component, EventEmitter, Output } from "@angular/core";
import { AbstractAppConfig } from "../../../../../../../app.config";
import { CaseFileViewOverlayMenuItem } from "../../shared/case-file-view-overlay-menu/case-file-view-overlay-menu-item.model";

Expand All @@ -7,7 +7,7 @@ import { CaseFileViewOverlayMenuItem } from "../../shared/case-file-view-overlay
templateUrl: "./case-file-view-folder-toggle.component.html",
styleUrls: ["./case-file-view-folder-toggle.component.scss"],
})
export class CaseFileViewFolderToggleComponent implements OnInit {
export class CaseFileViewFolderToggleComponent {
public isOpen = false;

@Output() public expandAll = new EventEmitter<boolean>();
Expand All @@ -27,6 +27,4 @@ export class CaseFileViewFolderToggleComponent implements OnInit {
];

constructor(private readonly appConfig: AbstractAppConfig) {}

public ngOnInit(): void {}
}

0 comments on commit cebeb13

Please sign in to comment.