Skip to content

Commit

Permalink
Use 'traceviewer-base/lib' instead of 'traceviewer-base/src'
Browse files Browse the repository at this point in the history
Some traceviewer-base imports still use the src directory instead of
lib. This commit fixes this.

Signed-off-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
  • Loading branch information
bhufmann committed Sep 8, 2023
1 parent 0552168 commit abe6fad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { EntryTree } from './utils/filter-tree/entry-tree';
import { XyEntry, XYSeries } from 'tsp-typescript-client/lib/models/xy';
import * as React from 'react';
import { flushSync } from 'react-dom';
import { TimeRange } from 'traceviewer-base/src/utils/time-range';
import { TimeRange } from 'traceviewer-base/lib/utils/time-range';
import { BIMath } from 'timeline-chart/lib/bigint-utils';
import {
XYChartFactoryParams,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TimeRange } from 'traceviewer-base/src/utils/time-range';
import { TimeRange } from 'traceviewer-base/lib/utils/time-range';
import { AbstractOutputProps } from '../abstract-output-component';

export interface XYChartFactoryParams {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
FLAG_ZOOM_OUT,
MouseButton
} from './abstract-xy-output-component';
import { TimeRange } from 'traceviewer-base/src/utils/time-range';
import { TimeRange } from 'traceviewer-base/lib/utils/time-range';
import { validateNumArray } from './utils/filter-tree/utils';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faSpinner } from '@fortawesome/free-solid-svg-icons';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { AbstractOutputProps } from './abstract-output-component';
import { ResponseStatus } from 'tsp-typescript-client/lib/models/response/responses';
import * as React from 'react';
import { drawSelection } from './utils/xy-output-component-utils';
import { TimeRange } from 'traceviewer-base/src/utils/time-range';
import { TimeRange } from 'traceviewer-base/lib/utils/time-range';
import { AbstractXYOutputState, MouseButton } from './abstract-xy-output-component';
import {
AbstractXYOutputComponent,
Expand Down

0 comments on commit abe6fad

Please sign in to comment.