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
Next Next commit
fixed: from-to in query tie to whole days
  • Loading branch information
Andreas Müller committed Dec 2, 2022
commit 380bb5b09925eed0d91ac172141c1bc9278ae67b
4 changes: 2 additions & 2 deletions src/models/report.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ class report extends Base {
"project": this.project.data.path_with_namespace,
"after": (cursor===undefined)?'':cursor,
"entryPerPage": 30,
"startTime": this.config.get('from'),
"endTime": this.config.get('to')
"startTime": this.config.get('from').format("Y-M-D"),
"endTime": this.config.get('to').format("Y-M-D")
}
};

Expand Down