From 8a0480e96dcdbc7990145d560a764705f2cd5cff Mon Sep 17 00:00:00 2001 From: HarelM Date: Thu, 13 Jun 2024 14:24:35 +0300 Subject: [PATCH] Move import up --- .../src/application/components/route-statistics.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IsraelHiking.Web/src/application/components/route-statistics.component.ts b/IsraelHiking.Web/src/application/components/route-statistics.component.ts index 8d4cc4152..08cced625 100644 --- a/IsraelHiking.Web/src/application/components/route-statistics.component.ts +++ b/IsraelHiking.Web/src/application/components/route-statistics.component.ts @@ -1,4 +1,5 @@ import { Component, ViewEncapsulation, OnInit, ViewChild, ElementRef, ChangeDetectorRef } from "@angular/core"; +import { takeUntilDestroyed } from "@angular/core/rxjs-interop"; import { trigger, style, transition, animate } from "@angular/animations"; import { Observable, interval } from "rxjs"; import { regressionLoess } from "d3-regression"; @@ -19,7 +20,6 @@ import { GeoLocationService } from "../services/geo-location.service"; import { AudioPlayerFactory, IAudioPlayer } from "../services/audio-player.factory"; import { ToggleIsShowKmMarkersAction, ToggleIsShowSlopeAction } from "../reducers/configuration.reducer"; import type { LatLngAlt, ApplicationState, LatLngAltTime } from "../models/models"; -import { takeUntilDestroyed } from "@angular/core/rxjs-interop"; declare type DragState = "start" | "drag" | "none";