Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
9b881061
Commit
9b881061
authored
Nov 20, 2019
by
Martin Wortschack
Committed by
Filipa Lacerda
Nov 20, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Productivity Analytics: Fix date manipulation bug
parent
bddcc578
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
ee/app/assets/javascripts/analytics/productivity_analytics/utils.js
...ets/javascripts/analytics/productivity_analytics/utils.js
+1
-5
No files found.
ee/app/assets/javascripts/analytics/productivity_analytics/utils.js
View file @
9b881061
...
...
@@ -93,12 +93,8 @@ export const transformScatterData = (data, startDate, endDate) => {
Object
.
keys
(
data
).
forEach
(
id
=>
{
const
mergedAtDate
=
new
Date
(
data
[
id
].
merged_at
);
const
d
=
new
Date
();
d
.
setDate
(
mergedAtDate
.
getDate
());
d
.
setMonth
(
mergedAtDate
.
getMonth
());
d
.
setFullYear
(
mergedAtDate
.
getFullYear
());
const
dayDiff
=
getDayDifference
(
mergedAtDate
,
endDate
);
const
dayDiff
=
getDayDifference
(
d
,
endDate
);
if
(
dayDiff
>
-
1
)
{
const
idx
=
totalItems
-
(
dayDiff
+
1
);
result
[
idx
].
push
(
data
[
id
]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment