Skip to content

Commit f749bbc

Browse files
committed
chore(lint): ran lint locally to fix pipeline
1 parent f4398a5 commit f749bbc

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

apps/shell/src/app/app.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="app-layout">
22
<!-- Sidebar -->
3-
<app-sidebar [expanded]="sidebarExpanded()" />
3+
<lib-sidebar [expanded]="sidebarExpanded()" />
44

55
<!-- Main -->
66
<div class="main-wrapper">

libs/feature-a/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"version": "2.0.0",
44
"peerDependencies": {
55
"@angular/core": "^21.2.0",
6-
"@angular/router": "^21.2.0"
6+
"@angular/router": "^21.2.0",
7+
"@angular/common": "~21.2.0"
78
},
89
"sideEffects": false,
910
"nacs-contributions": {

libs/shell-nav/src/lib/sidebar/sidebar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function hasMenuData(route: Route): route is Route & { data: MenuRouteData } {
2424
}
2525

2626
@Component({
27-
selector: 'app-sidebar',
27+
selector: 'lib-sidebar',
2828
imports: [RouterModule, NgComponentOutlet],
2929
changeDetection: ChangeDetectionStrategy.OnPush,
3030
host: {

0 commit comments

Comments
 (0)