From aee2c03d8cf9bf6f05ef96308f802670d646b7aa Mon Sep 17 00:00:00 2001 From: dlandiak Date: Wed, 30 Oct 2024 17:09:39 +0200 Subject: [PATCH] fix imports in ui files --- ui-ngx/src/app/core/http/stats.service.ts | 16 ++++++++-------- .../app/core/http/unauthorized-client.service.ts | 14 +++++++------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/ui-ngx/src/app/core/http/stats.service.ts b/ui-ngx/src/app/core/http/stats.service.ts index f740410ab..d9c4c12a1 100644 --- a/ui-ngx/src/app/core/http/stats.service.ts +++ b/ui-ngx/src/app/core/http/stats.service.ts @@ -14,14 +14,14 @@ /// limitations under the License. /// -import {Injectable} from '@angular/core'; -import {defaultHttpOptionsFromConfig, RequestConfig} from './http-utils'; -import {Observable} from 'rxjs'; -import {HttpClient} from '@angular/common/http'; -import {isDefinedAndNotNull} from '@core/utils'; -import {AggregationType} from '@shared/models/time/time.models'; -import {Direction} from '@shared/models/page/sort-order'; -import {TimeseriesData} from '@shared/models/chart.model'; +import { Injectable } from '@angular/core'; +import { defaultHttpOptionsFromConfig, RequestConfig } from './http-utils'; +import { Observable } from 'rxjs'; +import { HttpClient } from '@angular/common/http'; +import { isDefinedAndNotNull } from '@core/utils'; +import { AggregationType } from '@shared/models/time/time.models'; +import { Direction } from '@shared/models/page/sort-order'; +import { TimeseriesData } from '@shared/models/chart.model'; export const chartKeysTotal = ['incomingMsgs', 'outgoingMsgs', 'droppedMsgs', 'sessions', 'subscriptions', 'processedBytes']; export const timeseriesDataLimit = 50000; diff --git a/ui-ngx/src/app/core/http/unauthorized-client.service.ts b/ui-ngx/src/app/core/http/unauthorized-client.service.ts index 5a75fb36b..c681330e9 100644 --- a/ui-ngx/src/app/core/http/unauthorized-client.service.ts +++ b/ui-ngx/src/app/core/http/unauthorized-client.service.ts @@ -14,13 +14,13 @@ /// limitations under the License. /// -import {Injectable} from '@angular/core'; -import {defaultHttpOptionsFromConfig, RequestConfig} from './http-utils'; -import {Observable} from 'rxjs'; -import {HttpClient} from '@angular/common/http'; -import {PageLink} from '@shared/models/page/page-link'; -import {PageData} from '@shared/models/page/page-data'; -import {UnauthorizedClient, UnauthorizedClientQuery} from '@shared/models/unauthorized-client.model'; +import { Injectable } from '@angular/core'; +import { defaultHttpOptionsFromConfig, RequestConfig } from './http-utils'; +import { Observable } from 'rxjs'; +import { HttpClient } from '@angular/common/http'; +import { PageLink } from '@shared/models/page/page-link'; +import { PageData } from '@shared/models/page/page-data'; +import { UnauthorizedClient, UnauthorizedClientQuery } from '@shared/models/unauthorized-client.model'; @Injectable({ providedIn: 'root'