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
Léo-Paul Géneau
gitlab-ce
Commits
6e911a11
Commit
6e911a11
authored
Nov 07, 2018
by
Constance Okoghenun
Committed by
Fatih Acet
Nov 07, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CE backport - Chart showing issues created per month
parent
24d3486f
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
4 deletions
+14
-4
app/assets/javascripts/commons/polyfills.js
app/assets/javascripts/commons/polyfills.js
+1
-0
app/assets/javascripts/lib/utils/datetime_utility.js
app/assets/javascripts/lib/utils/datetime_utility.js
+1
-1
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+5
-0
app/views/layouts/nav/sidebar/_group.html.haml
app/views/layouts/nav/sidebar/_group.html.haml
+2
-0
app/views/shared/boards/_show.html.haml
app/views/shared/boards/_show.html.haml
+1
-1
app/views/shared/issuable/_search_bar.html.haml
app/views/shared/issuable/_search_bar.html.haml
+2
-1
db/fixtures/development/09_issues.rb
db/fixtures/development/09_issues.rb
+2
-1
No files found.
app/assets/javascripts/commons/polyfills.js
View file @
6e911a11
...
...
@@ -5,6 +5,7 @@ import 'core-js/fn/array/find-index';
import
'
core-js/fn/array/from
'
;
import
'
core-js/fn/array/includes
'
;
import
'
core-js/fn/object/assign
'
;
import
'
core-js/fn/object/values
'
;
import
'
core-js/fn/promise
'
;
import
'
core-js/fn/string/code-point-at
'
;
import
'
core-js/fn/string/from-code-point
'
;
...
...
app/assets/javascripts/lib/utils/datetime_utility.js
View file @
6e911a11
...
...
@@ -14,7 +14,7 @@ window.timeago = timeago;
*
* @param {Boolean} abbreviated
*/
const
getMonthNames
=
abbreviated
=>
{
export
const
getMonthNames
=
abbreviated
=>
{
if
(
abbreviated
)
{
return
[
s__
(
'
Jan
'
),
...
...
app/assets/stylesheets/framework/variables.scss
View file @
6e911a11
...
...
@@ -641,3 +641,8 @@ Modals
$modal-body-height
:
134px
;
$priority-label-empty-state-width
:
114px
;
/*
Issues Analytics
*/
$issues-analytics-popover-boarder-color
:
rgba
(
0
,
0
,
0
,
0
.15
);
app/views/layouts/nav/sidebar/_group.html.haml
View file @
6e911a11
...
...
@@ -74,6 +74,8 @@
%span
=
boards_link_text
=
render_if_exists
'layouts/nav/issues_analytics_link'
-
if
group_sidebar_link?
(
:labels
)
=
nav_link
(
path:
'labels#index'
)
do
=
link_to
group_labels_path
(
@group
),
title:
_
(
'Labels'
)
do
...
...
app/views/shared/boards/_show.html.haml
View file @
6e911a11
...
...
@@ -10,7 +10,7 @@
-# haml-lint:disable InlineJavaScript
%script
#js-board-template
{
type:
"text/x-template"
}=
render
"shared/boards/components/board"
%script
#js-board-modal-filter
{
type:
"text/x-template"
}=
render
"shared/issuable/search_bar"
,
type: :boards_modal
%script
#js-board-modal-filter
{
type:
"text/x-template"
}=
render
"shared/issuable/search_bar"
,
type: :boards_modal
,
show_sorting_dropdown:
false
%script
#js-board-promotion
{
type:
"text/x-template"
}=
render_if_exists
"shared/promotions/promote_issue_board"
#board-app
.boards-app
{
"v-cloak"
=>
true
,
data:
board_data
,
":class"
=>
"{ 'is-compact': detailIssueVisible }"
}
...
...
app/views/shared/issuable/_search_bar.html.haml
View file @
6e911a11
...
...
@@ -3,6 +3,7 @@
-
block_css_class
=
type
!=
:boards_modal
?
'row-content-block second-block'
:
''
-
full_path
=
@project
.
present?
?
@project
.
full_path
:
@group
.
full_path
-
user_can_admin_list
=
board
&&
can?
(
current_user
,
:admin_list
,
board
.
parent
)
-
show_sorting_dropdown
=
local_assigns
.
fetch
(
:show_sorting_dropdown
,
true
)
.issues-filters
.issues-details-filters.filtered-search-block
{
class:
block_css_class
,
"v-pre"
=>
type
==
:boards_modal
}
...
...
@@ -140,5 +141,5 @@
-
if
@project
#js-add-issues-btn
.prepend-left-10
{
data:
{
can_admin_list:
can?
(
current_user
,
:admin_list
,
@project
)
}
}
#js-toggle-focus-btn
-
elsif
type
!=
:boards_modal
-
elsif
show_sorting_dropdown
=
render
'shared/sort_dropdown'
db/fixtures/development/09_issues.rb
View file @
6e911a11
...
...
@@ -8,7 +8,8 @@ Gitlab::Seeder.quiet do
description:
FFaker
::
Lorem
.
sentence
,
state:
[
'opened'
,
'closed'
].
sample
,
milestone:
project
.
milestones
.
sample
,
assignees:
[
project
.
team
.
users
.
sample
]
assignees:
[
project
.
team
.
users
.
sample
],
created_at:
rand
(
12
).
months
.
ago
}
Issues
::
CreateService
.
new
(
project
,
project
.
team
.
users
.
sample
,
issue_params
).
execute
...
...
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