Skip to content

Commit 65ffcbe

Browse files
Copilotddaribo
andcommitted
Use non-null assertion operator for clarity
Co-authored-by: ddaribo <[email protected]>
1 parent bdc776a commit 65ffcbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/date-range-picker/date-range-picker.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ export class IgxDateRangePickerComponent extends PickerBaseDirective
872872

873873
/** @hidden @internal */
874874
public getEditElement(): HTMLInputElement {
875-
return this.inputDirective.nativeElement;
875+
return this.inputDirective!.nativeElement;
876876
}
877877

878878
protected onStatusChanged = () => {

0 commit comments

Comments
 (0)