Skip to content

Commit 6e97dd7

Browse files
committed
On groups page, make the name clickable just like the id
1 parent 58a9864 commit 6e97dd7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/app/groups/groups.list.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
<td>
2626
<a ui-sref="index.groupmembers.list({groupId: group.id})">{{group.id}}</a>
2727
</td>
28-
<td>{{group.name}}</td>
28+
<td>
29+
<a ui-sref="index.groupmembers.list({groupId: group.id})">{{group.name}}</a>
30+
</td>
2931
<td>{{group.description}}</td>
3032
<td>
3133
<span ng-if="users[group.createdBy]">{{users[group.createdBy]}}</span>

0 commit comments

Comments
 (0)