Skip to content

Commit 380bb5b

Browse files
author
Andreas Müller
committed
fixed: from-to in query tie to whole days
1 parent 8862152 commit 380bb5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/models/report.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ class report extends Base {
168168
"project": this.project.data.path_with_namespace,
169169
"after": (cursor===undefined)?'':cursor,
170170
"entryPerPage": 30,
171-
"startTime": this.config.get('from'),
172-
"endTime": this.config.get('to')
171+
"startTime": this.config.get('from').format("Y-M-D"),
172+
"endTime": this.config.get('to').format("Y-M-D")
173173
}
174174
};
175175

0 commit comments

Comments
 (0)