Skip to content

Commit

Permalink
Fix typo in dashboard (group selection)
Browse files Browse the repository at this point in the history
  • Loading branch information
torinfo committed Dec 5, 2022
1 parent 3411dea commit 4aae5e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website_code/scripts/xapi_dashboard.js
Expand Up @@ -1825,7 +1825,7 @@ xAPIDashboard.prototype.displayPageInfo = function(contentDiv, jqLocation, inter
var groupedData = {};
for($key in $this.data.groupedData) {
$val = $this.data.groupedData[$key];
if ($this.data.currentGroup.group_id == "all-groups" || $this.data.currentGroup.group_id == $this.getGroupFromStatements($val.statements)) {
if ($this.data.currentGroup.group_id == "all-groups" || $this.data.currentGroup.group_id == $this.getGroupFromStatements($val.statementidxs)) {
groupedData[$key] = $val;
}
}
Expand Down

0 comments on commit 4aae5e4

Please sign in to comment.