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
7997a0df
Commit
7997a0df
authored
Apr 05, 2017
by
Jose Ivan Vargas Lopez
Committed by
Jose Ivan Vargas
Apr 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dashboard section capitalization fix
parent
c2a987fb
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
app/views/dashboard/_groups_head.html.haml
app/views/dashboard/_groups_head.html.haml
+1
-1
app/views/dashboard/_projects_head.html.haml
app/views/dashboard/_projects_head.html.haml
+1
-1
app/views/dashboard/issues.html.haml
app/views/dashboard/issues.html.haml
+1
-1
app/views/dashboard/merge_requests.html.haml
app/views/dashboard/merge_requests.html.haml
+1
-1
app/views/dashboard/milestones/index.html.haml
app/views/dashboard/milestones/index.html.haml
+1
-1
features/steps/dashboard/new_project.rb
features/steps/dashboard/new_project.rb
+2
-2
spec/features/dashboard/group_spec.rb
spec/features/dashboard/group_spec.rb
+1
-1
No files found.
app/views/dashboard/_groups_head.html.haml
View file @
7997a0df
...
@@ -11,4 +11,4 @@
...
@@ -11,4 +11,4 @@
=
render
'shared/groups/dropdown'
=
render
'shared/groups/dropdown'
-
if
current_user
.
can_create_group?
-
if
current_user
.
can_create_group?
=
link_to
new_group_path
,
class:
"btn btn-new"
do
=
link_to
new_group_path
,
class:
"btn btn-new"
do
New
G
roup
New
g
roup
app/views/dashboard/_projects_head.html.haml
View file @
7997a0df
...
@@ -19,4 +19,4 @@
...
@@ -19,4 +19,4 @@
=
render
'shared/projects/dropdown'
=
render
'shared/projects/dropdown'
-
if
current_user
.
can_create_project?
-
if
current_user
.
can_create_project?
=
link_to
new_project_path
,
class:
'btn btn-new'
do
=
link_to
new_project_path
,
class:
'btn btn-new'
do
New
P
roject
New
p
roject
app/views/dashboard/issues.html.haml
View file @
7997a0df
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
.nav-controls
.nav-controls
=
link_to
params
.
merge
(
rss_url_options
),
class:
'btn has-tooltip'
,
title:
'Subscribe'
do
=
link_to
params
.
merge
(
rss_url_options
),
class:
'btn has-tooltip'
,
title:
'Subscribe'
do
=
icon
(
'rss'
)
=
icon
(
'rss'
)
=
render
'shared/new_project_item_select'
,
path:
'issues/new'
,
label:
"New
I
ssue"
=
render
'shared/new_project_item_select'
,
path:
'issues/new'
,
label:
"New
i
ssue"
=
render
'shared/issuable/filter'
,
type: :issues
=
render
'shared/issuable/filter'
,
type: :issues
=
render
'shared/issues'
=
render
'shared/issues'
app/views/dashboard/merge_requests.html.haml
View file @
7997a0df
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
.top-area
.top-area
=
render
'shared/issuable/nav'
,
type: :merge_requests
=
render
'shared/issuable/nav'
,
type: :merge_requests
.nav-controls
.nav-controls
=
render
'shared/new_project_item_select'
,
path:
'merge_requests/new'
,
label:
"New
Merge R
equest"
=
render
'shared/new_project_item_select'
,
path:
'merge_requests/new'
,
label:
"New
merge r
equest"
=
render
'shared/issuable/filter'
,
type: :merge_requests
=
render
'shared/issuable/filter'
,
type: :merge_requests
=
render
'shared/merge_requests'
=
render
'shared/merge_requests'
app/views/dashboard/milestones/index.html.haml
View file @
7997a0df
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
=
render
'shared/milestones_filter'
,
counts:
@milestone_states
=
render
'shared/milestones_filter'
,
counts:
@milestone_states
.nav-controls
.nav-controls
=
render
'shared/new_project_item_select'
,
path:
'milestones/new'
,
label:
'New
M
ilestone'
,
include_groups:
true
=
render
'shared/new_project_item_select'
,
path:
'milestones/new'
,
label:
'New
m
ilestone'
,
include_groups:
true
.milestones
.milestones
%ul
.content-list
%ul
.content-list
...
...
features/steps/dashboard/new_project.rb
View file @
7997a0df
...
@@ -3,9 +3,9 @@ class Spinach::Features::NewProject < Spinach::FeatureSteps
...
@@ -3,9 +3,9 @@ class Spinach::Features::NewProject < Spinach::FeatureSteps
include
SharedPaths
include
SharedPaths
include
SharedProject
include
SharedProject
step
'I click "New
P
roject" link'
do
step
'I click "New
p
roject" link'
do
page
.
within
(
'.content'
)
do
page
.
within
(
'.content'
)
do
click_link
"New
P
roject"
click_link
"New
p
roject"
end
end
end
end
...
...
spec/features/dashboard/group_spec.rb
View file @
7997a0df
...
@@ -7,7 +7,7 @@ RSpec.describe 'Dashboard Group', feature: true do
...
@@ -7,7 +7,7 @@ RSpec.describe 'Dashboard Group', feature: true do
it
'creates new grpup'
do
it
'creates new grpup'
do
visit
dashboard_groups_path
visit
dashboard_groups_path
click_link
'New
G
roup'
click_link
'New
g
roup'
fill_in
'group_path'
,
with:
'Samurai'
fill_in
'group_path'
,
with:
'Samurai'
fill_in
'group_description'
,
with:
'Tokugawa Shogunate'
fill_in
'group_description'
,
with:
'Tokugawa Shogunate'
...
...
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