Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update reportCollection.js
  • Loading branch information
robertoberlim authored Apr 12, 2022
commit c42538a1f896129d3d232136f84e95afa2dc573d
2 changes: 1 addition & 1 deletion src/models/reportCollection.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class reportCollection extends Base {

push(report) {
this.reports.push(report);
if (projlist.indexOf(report.project.name) === -1 {
if (projlist.indexOf(report.project.name) === -1) {
projlist.push(report.project.name);
this.reports.push(report);
}
Expand Down