mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
fix(range): set ticks to an empty array to prevent errors
This commit is contained in:
@ -210,7 +210,7 @@ export class Range implements AfterViewInit, ControlValueAccessor, OnDestroy {
|
|||||||
private _active: RangeKnob;
|
private _active: RangeKnob;
|
||||||
private _start: Coordinates = null;
|
private _start: Coordinates = null;
|
||||||
private _rect: ClientRect;
|
private _rect: ClientRect;
|
||||||
private _ticks: any[];
|
private _ticks: any[] = [];
|
||||||
private _barL: string;
|
private _barL: string;
|
||||||
private _barR: string;
|
private _barR: string;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user