Skip to content

Commit 55bca56

Browse files
committed
Reflected changes mentioned in review
1 parent d69f371 commit 55bca56

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ node_modules
1313
gui/build
1414
gui/node_modules
1515
gui/static/gen
16+
*.log

templates/community_team_list.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h3>{{ project.name }}</h3>
1818
{% for member in project.members %}
1919
<tr>
2020
<td scope="row">{{ member.role }}</td>
21-
<td scope="row" id="{{project.repos}}--{{member.name}}">{{ member.name }}</td>
21+
<td scope="row" id="{{project.name|lower|replace(' ','-')}}--{{member.name|lower|replace(' ','-')}}">{{ member.name }}</td>
2222
</tr>
2323
{% endfor %}
2424
</tbody>
@@ -36,7 +36,7 @@ <h2>Community Building Teams</h2>
3636
{% for member in bag('community_team_members.community_builders') %}
3737
<tr>
3838
<td scope="row">{{ member.role }}</td>
39-
<td scope="row" id="community-builder--{{member.name}}">{{ member.name }}</td>
39+
<td scope="row" id="community-builder--{{member.name|replace(' ','-')}}">{{ member.name }}</td>
4040
</tr>
4141
{% endfor %}
4242
</tbody>

0 commit comments

Comments
 (0)