Skip to content

Commit

Permalink
fix imports in ui files
Browse files Browse the repository at this point in the history
  • Loading branch information
dmytro-landiak committed Oct 30, 2024
1 parent 0b0ef96 commit aee2c03
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions ui-ngx/src/app/core/http/stats.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
14 changes: 7 additions & 7 deletions ui-ngx/src/app/core/http/unauthorized-client.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit aee2c03

Please sign in to comment.