Skip to content

Commit 5b98587

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Apply review comments.
1 parent 0cab962 commit 5b98587

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/igniteui-angular/src/lib/splitter/splitter-pane/splitter-pane.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { Component, HostBinding, Input, ElementRef, Output, EventEmitter, boolea
2222
export class IgxSplitterPaneComponent {
2323
private _minSize: string;
2424
private _maxSize: string;
25-
private _order: WritableSignal<number> = signal(null);
25+
private _order = signal<number | null>(null);
2626

2727
/**
2828
* @hidden @internal
@@ -232,7 +232,7 @@ export class IgxSplitterPaneComponent {
232232
private _collapsed = false;
233233

234234

235-
constructor(private el: ElementRef, private cdr: ChangeDetectorRef) { }
235+
constructor(private el: ElementRef) { }
236236

237237
/**
238238
* Toggles the collapsed state of the pane.

0 commit comments

Comments
 (0)