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
2497cfbb
Commit
2497cfbb
authored
Jan 28, 2019
by
Sanad Liaquat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix hit miss of Show all activity button
parent
05a78b72
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31 additions
and
1 deletion
+31
-1
ee/app/assets/javascripts/related_issues/components/related_issues_block.vue
...cripts/related_issues/components/related_issues_block.vue
+1
-1
qa/qa/ee.rb
qa/qa/ee.rb
+1
-0
qa/qa/ee/page/project/issue/show.rb
qa/qa/ee/page/project/issue/show.rb
+27
-0
qa/qa/page/project/issue/show.rb
qa/qa/page/project/issue/show.rb
+1
-0
qa/qa/specs/features/browser_ui/2_plan/ee_epic/create_edit_delete_epic_spec.rb
...browser_ui/2_plan/ee_epic/create_edit_delete_epic_spec.rb
+1
-0
No files found.
ee/app/assets/javascripts/related_issues/components/related_issues_block.vue
View file @
2497cfbb
...
...
@@ -214,7 +214,7 @@ export default {
}"
class="related-issues-token-body"
>
<div
v-if=
"isFetching"
class=
"related-issues-loading-icon"
>
<div
v-if=
"isFetching"
class=
"related-issues-loading-icon
qa-related-issues-loading-icon
"
>
<gl-loading-icon
ref=
"loadingIcon"
label=
"Fetching related issues"
...
...
qa/qa/ee.rb
View file @
2497cfbb
...
...
@@ -56,6 +56,7 @@ module QA
module
Issue
autoload
:Index
,
'qa/ee/page/project/issue/index'
autoload
:Show
,
'qa/ee/page/project/issue/show'
end
module
Settings
...
...
qa/qa/ee/page/project/issue/show.rb
0 → 100644
View file @
2497cfbb
# frozen_string_literal: true
module
QA
module
EE
module
Page
module
Project
module
Issue
module
Show
def
self
.
prepended
(
page
)
page
.
module_eval
do
view
'ee/app/assets/javascripts/related_issues/components/related_issues_block.vue'
do
element
:related_issues_loading_icon
end
end
end
def
wait_for_related_issues_to_load
wait
(
reload:
false
)
do
has_no_element?
(
:related_issues_loading_icon
)
end
end
end
end
end
end
end
end
qa/qa/page/project/issue/show.rb
View file @
2497cfbb
...
...
@@ -5,6 +5,7 @@ module QA
module
Project
module
Issue
class
Show
<
Page
::
Base
prepend
QA
::
EE
::
Page
::
Project
::
Issue
::
Show
include
Page
::
Component
::
Issuable
::
Common
include
Page
::
Component
::
Note
...
...
qa/qa/specs/features/browser_ui/2_plan/ee_epic/create_edit_delete_epic_spec.rb
View file @
2497cfbb
...
...
@@ -49,6 +49,7 @@ module QA
issue
.
visit!
Page
::
Project
::
Issue
::
Show
.
perform
do
|
show_page
|
show_page
.
wait_for_related_issues_to_load
show_page
.
select_all_activities_filter
show_page
.
comment
(
"/epic
#{
epic
.
web_url
}
"
)
show_page
.
comment
(
"/remove_epic"
)
...
...
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