Skip to content

Commit

Permalink
Cleaning up implements
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-bizz committed Nov 27, 2024
1 parent 678aec3 commit 2ae4add
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import { Component, Input, OnChanges, SimpleChanges } from '@angular/core';
import {
Component,
Input,
OnChanges,
OnDestroy,
SimpleChanges
} from '@angular/core';
import {
Content,
FlowItem,
Expand All @@ -11,7 +17,7 @@ import { PageService } from '../../service/page-service.service';
templateUrl: './content-flow-item.component.html',
styleUrls: ['./content-flow-item.component.css']
})
export class ContentFlowItemComponent implements OnChanges {
export class ContentFlowItemComponent implements OnChanges, OnDestroy {
@Input() item: FlowItem;
contents: Content[];
ready: boolean;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import { Component, Input, OnChanges, SimpleChanges } from '@angular/core';
import {
Component,
Input,
OnChanges,
OnDestroy,
SimpleChanges
} from '@angular/core';
import {
Content,
FlowWatcher,
Expand All @@ -11,7 +17,7 @@ import { PageService } from '../../service/page-service.service';
templateUrl: './content-multiselect-option.component.html',
styleUrls: ['./content-multiselect-option.component.css']
})
export class ContentMultiselectOptionComponent implements OnChanges {
export class ContentMultiselectOptionComponent implements OnChanges, OnDestroy {
@Input() item: MultiselectOption;
option: MultiselectOption;
contents: Content[];
Expand Down

0 comments on commit 2ae4add

Please sign in to comment.