Skip to content

Commit 659785f

Browse files
committed
14: Remove chance of infinite loop
1 parent 11c69a6 commit 659785f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/solicitation/solicitation-report/solicitation-report.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ export class SolicitationReportComponent extends BaseComponent implements OnInit
367367
}
368368
}
369369
// if we got them all, send it. Otherwise pull another batch
370-
if (filter.first === solicitations.totalCount) {
370+
if (filter.first >= solicitations.totalCount) {
371371
this.sendBlob(csv);
372372
document.body.style.cursor = 'default';
373373
} else {

0 commit comments

Comments
 (0)