Browse Source

Progress > 100% #11 (#12)

pull/1/head
sanke1 6 years ago committed by rozetko
parent
commit
298a1d1fe0
  1. 2
      src/target.ts

2
src/target.ts

@ -54,7 +54,7 @@ export class Target {
public async export() {
this.exportedRows = 0;
this.days = (this.to - this.from) / MS_IN_DAY;
this.days = Math.round((this.to - this.from) / MS_IN_DAY);
this.day = 0;
this.initCsvStream();

Loading…
Cancel
Save