Skip to content

Commit fe40b82

Browse files
committed
Merge branch 'v4-dev' into v4-feat/settings
2 parents 4cfdb48 + 75b7a70 commit fe40b82

28 files changed

Lines changed: 1272 additions & 516 deletions

angular.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
{
4545
"type": "anyComponentStyle",
4646
"maximumWarning": "2kb",
47-
"maximumError": "4kb"
47+
"maximumError": "6kb"
4848
}
4949
],
5050
"fileReplacements": [

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';
@@ -15,7 +15,7 @@ const routes: Routes = [
1515
{ path: '', component: CircularHeatmapComponent },
1616
{ path: 'circular-heatmap', component: CircularHeatmapComponent },
1717
{ path: 'matrix', component: MatrixComponent },
18-
{ path: 'activity-description', component: ActivityDescriptionComponent },
18+
{ path: 'activity-description', component: ActivityDescriptionPageComponent },
1919
{ path: 'mapping', component: MappingComponent },
2020
{ path: 'usage', redirectTo: 'usage/' },
2121
{ path: 'usage/:page', component: UsageComponent },

src/app/app.module.ts

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

0 commit comments

Comments
 (0)