Skip to content

Commit dcaff0a

Browse files
committed
Merge branch 'v4-feat/activity-info' into v4-dev
2 parents bac6070 + 795c729 commit dcaff0a

20 files changed

Lines changed: 1045 additions & 428 deletions

package-lock.json

Lines changed: 77 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/app-routing.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { UserdayComponent } from './pages/userday/userday.component';
55
import { CircularHeatmapComponent } from './pages/circular-heatmap/circular-heatmap.component';
66
import { MappingComponent } from './pages/mapping/mapping.component';
77
import { MatrixComponent } from './pages/matrix/matrix.component';
8-
import { ActivityDescriptionComponent } from './component/activity-description/activity-description.component';
8+
import { ActivityDescriptionPageComponent } from './pages/activity-description/activity-description-page.component';
99
import { UsageComponent } from './pages/usage/usage.component';
1010
import { TeamsComponent } from './pages/teams/teams.component';
1111
import { RoadmapComponent } from './pages/roadmap/roadmap.component';
@@ -14,7 +14,7 @@ const routes: Routes = [
1414
{ path: '', component: CircularHeatmapComponent },
1515
{ path: 'circular-heatmap', component: CircularHeatmapComponent },
1616
{ path: 'matrix', component: MatrixComponent },
17-
{ path: 'activity-description', component: ActivityDescriptionComponent },
17+
{ path: 'activity-description', component: ActivityDescriptionPageComponent },
1818
{ path: 'mapping', component: MappingComponent },
1919
{ path: 'usage', redirectTo: 'usage/' },
2020
{ path: 'usage/:page', component: UsageComponent },

src/app/app.module.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import { LogoComponent } from './component/logo/logo.component';
1818
import { SidenavButtonsComponent } from './component/sidenav-buttons/sidenav-buttons.component';
1919
import { TopHeaderComponent } from './component/top-header/top-header.component';
2020
import { ActivityDescriptionComponent } from './component/activity-description/activity-description.component';
21+
import { ActivityDescriptionPageComponent } from './pages/activity-description/activity-description-page.component';
2122
import { LoaderService } from './service/loader/data-loader.service';
2223
import { HttpClientModule } from '@angular/common/http';
2324
import { ReadmeToHtmlComponent } from './component/readme-to-html/readme-to-html.component';
@@ -37,6 +38,7 @@ import { TeamsGroupsEditorModule } from './component/teams-groups-editor/teams-g
3738
SidenavButtonsComponent,
3839
TopHeaderComponent,
3940
ActivityDescriptionComponent,
41+
ActivityDescriptionPageComponent,
4042
CircularHeatmapComponent,
4143
MappingComponent,
4244
ReadmeToHtmlComponent,

0 commit comments

Comments
 (0)