Skip to content

Commit 1842a35

Browse files
committed
fix: fix lint issues
1 parent 2ba0158 commit 1842a35

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

projects/common/src/navigation/navigation.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ import {
1313
UrlSegment,
1414
UrlTree
1515
} from '@angular/router';
16+
import { NavItemConfig, NavItemType } from '@hypertrace/components';
1617
import { uniq } from 'lodash-es';
1718
import { from, Observable, of } from 'rxjs';
1819
import { distinctUntilChanged, filter, map, share, skip, startWith, switchMap, take } from 'rxjs/operators';
19-
import { NavItemConfig, NavItemType } from '../../../components/src/navigation/navigation-list.component';
2020
import { isEqualIgnoreFunctions, throwIfNil } from '../utilities/lang/lang-utils';
2121
import { Dictionary } from '../utilities/types/types';
2222
import { TraceRoute } from './trace-route';

src/app/shared/navigation/navigation.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,9 @@ export class NavigationComponent {
7878
private readonly preferenceService: PreferenceService,
7979
private readonly activatedRoute: ActivatedRoute
8080
) {
81-
this.navItems = this.navItemDefinitions.map(definition => this.navigationService.decorateNavItem(definition, this.activatedRoute));
81+
this.navItems = this.navItemDefinitions.map(definition =>
82+
this.navigationService.decorateNavItem(definition, this.activatedRoute)
83+
);
8284
this.isCollapsed$ = this.preferenceService.get(NavigationComponent.COLLAPSED_PREFERENCE, false);
8385
}
8486

0 commit comments

Comments
 (0)