Skip to content

Commit 01a9d66

Browse files
committed
Mapping: Add link to activity
1 parent 07ea6a1 commit 01a9d66

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/app/pages/mapping/mapping.component.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,11 @@
4444

4545
<ng-container matColumnDef="activityName">
4646
<th mat-header-cell mat-sort-header *matHeaderCellDef>Activity</th>
47-
<td mat-cell *matCellDef="let element">{{ element.activityName }}</td>
47+
<td mat-cell *matCellDef="let element">
48+
<a [routerLink]="['/activity-description']" [queryParams]="{ uuid: element.uuid }">
49+
{{ element.activityName }}
50+
</a>
51+
</td>
4852
</ng-container>
4953

5054
<ng-container matColumnDef="samm2">

src/assets/Markdown Files/TODO-v4.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@
6868
- Meta.yaml: Allow admins to customize the terms 'Team' and 'Group' (e.g. to 'App' and 'Portfolio')
6969

7070
# Done
71+
- Activity info: Revamp the activity compoment
72+
- Activity info: Both Matrix, Heatmap, and now Mapping use the same component for displaying activity info
7173
- Heatmap: Add #uuid to URL, and allow navigation on clicks in dependencies
7274
- Dependency: Make connecting nodes clickable for navigation
7375
- Dependency: Handle dependsOn uuid, not just name

0 commit comments

Comments
 (0)