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
0
Merge Requests
0
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
iv
gitlab-ce
Commits
8b2a7a2d
Commit
8b2a7a2d
authored
Jul 16, 2016
by
eanplatter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix activity heatmap to show proper day name.
parent
2550c1c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
CHANGELOG
CHANGELOG
+1
-0
app/assets/javascripts/lib/utils/datetime_utility.js.coffee
app/assets/javascripts/lib/utils/datetime_utility.js.coffee
+1
-1
No files found.
CHANGELOG
View file @
8b2a7a2d
Please view this file on the master branch, on stable branches it's out of date.
v 8.10.0 (unreleased)
- Fix profile activity heatmap to show correct day name (eanplatter)
- Expose {should,force}_remove_source_branch (Ben Boeckel)
- Disable PostgreSQL statement timeout during migrations
- Fix projects dropdown loading performance with a simplified api cal. !5113 (tiagonbotelho)
...
...
app/assets/javascripts/lib/utils/datetime_utility.js.coffee
View file @
8b2a7a2d
...
...
@@ -2,7 +2,7 @@
w
.
gl
?=
{}
w
.
gl
.
utils
?=
{}
w
.
gl
.
utils
.
days
=
[
'
Monday'
,
'Tuesday'
,
'Wednesday'
,
'Thursday'
,
'Friday'
,
'Saturday'
,
'Sun
day'
]
w
.
gl
.
utils
.
days
=
[
'
Sunday'
,
'Monday'
,
'Tuesday'
,
'Wednesday'
,
'Thursday'
,
'Friday'
,
'Satur
day'
]
w
.
gl
.
utils
.
formatDate
=
(
datetime
)
->
dateFormat
(
datetime
,
'mmm d, yyyy h:MMtt Z'
)
...
...
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