Skip to content

Commit 063ba4c

Browse files
committed
fix routing to skills, description of trajectory, list of trajectories
1 parent b12890d commit 063ba4c

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

projects/skills/src/app/app.routes.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ export const routes: Routes = [
2929
path: "profile",
3030
loadChildren: () => import("./profile/profile.routes").then(c => c.PROFILE_ROUTES),
3131
},
32-
// {
33-
// path: "skills",
34-
// loadChildren: () => import("./skills/skills.routes").then(c => c.SKILLS_ROUTES),
35-
// },
32+
{
33+
path: "skills",
34+
loadChildren: () => import("./skills/skills.routes").then(c => c.SKILLS_ROUTES),
35+
},
3636
// {
3737
// path: "rating",
3838
// loadChildren: () => import("./rating/rating.routes").then(c => c.RATING_ROUTES),

projects/skills/src/app/trajectories/track-career/detail/info/info.component.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,11 @@
237237
padding: 18px 25px;
238238
border: 1px solid var(--grey-button);
239239
border-radius: 15px;
240+
overflow-y: auto;
240241

241242
@include responsive.apply-desktop {
242243
height: 235px;
244+
overflow-y: auto;
243245
}
244246
}
245247
}

projects/skills/src/app/trajectories/track-career/list/list.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- @format -->
22

33
<div class="list">
4-
@if (hasItems()) { @if (type() === 'all') { @for (trajectory of trajectoriesList().slice(1, 3);
4+
@if (hasItems()) { @if (type() === 'all') { @for (trajectory of trajectoriesList().slice(0, 2);
55
track $index) {
66
<app-trajectory [trajectory]="trajectory"></app-trajectory>
77
} } @else if (type() === 'my') {

0 commit comments

Comments
 (0)