Skip to content

Commit

Permalink
frontend: Fixed component routes and exported shared components
Browse files Browse the repository at this point in the history
  • Loading branch information
CSantosM committed Oct 18, 2024
1 parent 3acca4b commit 0ea07c0
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { MatListModule } from '@angular/material/list';
import { MatSidenav, MatSidenavModule } from '@angular/material/sidenav';
import { MatToolbarModule } from '@angular/material/toolbar';
import { RouterModule } from '@angular/router';
import { ConsoleNavLink } from '@lib/models/sidenav.model';
import { ConsoleNavLink } from '../../models/sidenav.model';

@Component({
selector: 'ov-console-nav',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';

@Component({
selector: 'app-unauthorized',
selector: 'ov-unauthorized',
standalone: true,
imports: [],
templateUrl: './unauthorized.component.html',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ export * from './console-nav/console-nav.component';
export * from './card/toggle-card/toggle-card.component';
export * from './dynamic-grid/dynamic-grid.component';
export * from './card/logo-card/logo-card.component';
export * from './errors/unauthorized/unauthorized.component';
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from '@lib/models/sidenav.model';
export * from './sidenav.model';
6 changes: 3 additions & 3 deletions frontend/projects/shared-call-components/src/public-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
* Public API Surface of shared-call-components
*/

export * from '@lib/components/index';
export * from '@lib/services/index';
export * from '@lib/models/index';
export * from './lib/components/index';
export * from './lib/services/index';
export * from './lib/models/index';

0 comments on commit 0ea07c0

Please sign in to comment.