Skip to content

Commit 8b9cf34

Browse files
committed
Issue: empty row displayed for old module
1 parent c5773f7 commit 8b9cf34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

trainingportal/static/dashboard.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ <h3>Modules</h3>
3030
</thead>
3131
<tbody>
3232
<tr ng-repeat="moduleStat in moduleStatList">
33-
<td style="width:75%">{{modules[moduleStat.moduleId].name}}</td>
33+
<td style="width:75%" ng-if="modules[moduleStat.moduleId]">{{modules[moduleStat.moduleId].name}}</td>
3434
<td>{{moduleStat.playerCount}}</td>
3535
</tr>
3636
</tbody>

0 commit comments

Comments
 (0)