Skip to content

Commit

Permalink
Issue: empty row displayed for old module
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-ion committed Dec 24, 2024
1 parent c5773f7 commit 8b9cf34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trainingportal/static/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h3>Modules</h3>
</thead>
<tbody>
<tr ng-repeat="moduleStat in moduleStatList">
<td style="width:75%">{{modules[moduleStat.moduleId].name}}</td>
<td style="width:75%" ng-if="modules[moduleStat.moduleId]">{{modules[moduleStat.moduleId].name}}</td>
<td>{{moduleStat.playerCount}}</td>
</tr>
</tbody>
Expand Down

0 comments on commit 8b9cf34

Please sign in to comment.