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
aa2e8afa
Commit
aa2e8afa
authored
Dec 26, 2018
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
2d0f6b20
68e312b2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
5 deletions
+19
-5
app/assets/stylesheets/pages/issuable.scss
app/assets/stylesheets/pages/issuable.scss
+4
-0
changelogs/unreleased/55484-fix-edit-button.yml
changelogs/unreleased/55484-fix-edit-button.yml
+4
-0
db/fixtures/development/24_forks.rb
db/fixtures/development/24_forks.rb
+6
-0
qa/qa/page/base.rb
qa/qa/page/base.rb
+2
-2
qa/qa/page/project/issue/show.rb
qa/qa/page/project/issue/show.rb
+3
-3
No files found.
app/assets/stylesheets/pages/issuable.scss
View file @
aa2e8afa
...
...
@@ -60,6 +60,10 @@
padding
:
0
;
margin-bottom
:
$gl-padding
;
border-bottom
:
0
;
word-wrap
:
break-word
;
overflow-wrap
:
break-word
;
min-width
:
0
;
width
:
100%
;
}
.btn-edit
{
...
...
changelogs/unreleased/55484-fix-edit-button.yml
0 → 100644
View file @
aa2e8afa
title
:
Fix edit button disappearing in issue title
merge_request
:
23948
author
:
Ruben Moya
type
:
fixed
db/fixtures/development/24_forks.rb
View file @
aa2e8afa
...
...
@@ -4,6 +4,12 @@ Sidekiq::Testing.inline! do
Gitlab
::
Seeder
.
quiet
do
User
.
all
.
sample
(
10
).
each
do
|
user
|
source_project
=
Project
.
public_only
.
sample
##
# 04_project.rb might not have created a public project because
# we use randomized approach (e.g. `Array#sample`).
return
unless
source_project
fork_project
=
Projects
::
ForkService
.
new
(
source_project
,
user
,
namespace:
user
.
namespace
).
execute
if
fork_project
.
valid?
...
...
qa/qa/page/base.rb
View file @
aa2e8afa
...
...
@@ -80,8 +80,8 @@ module QA
page
.
evaluate_script
(
'xhr.status'
)
==
200
end
def
find_element
(
name
,
wait:
Capybara
.
default_max_wait_time
)
find
(
element_selector_css
(
name
),
wait:
wait
)
def
find_element
(
name
,
text_filter
=
nil
,
wait:
Capybara
.
default_max_wait_time
)
find
(
element_selector_css
(
name
),
wait:
wait
,
text:
text_filter
)
end
def
all_elements
(
name
)
...
...
qa/qa/page/project/issue/show.rb
View file @
aa2e8afa
...
...
@@ -37,17 +37,17 @@ module QA
def
select_comments_only_filter
click_element
:discussion_filter
all_elements
(
:filter_options
)[
1
]
.
click
find_element
(
:filter_options
,
"Show comments only"
)
.
click
end
def
select_history_only_filter
click_element
:discussion_filter
all_elements
(
:filter_options
).
last
.
click
find_element
(
:filter_options
,
"Show history only"
)
.
click
end
def
select_all_activities_filter
click_element
:discussion_filter
all_elements
(
:filter_options
).
first
.
click
find_element
(
:filter_options
,
"Show all activity"
)
.
click
end
end
end
...
...
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