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
7577fdbc
Commit
7577fdbc
authored
Apr 17, 2019
by
Luke Bennett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix no assignee text in sidebar_spec
parent
ca3e7e44
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
app/assets/javascripts/sidebar/components/assignees/assignees.vue
...ts/javascripts/sidebar/components/assignees/assignees.vue
+1
-1
ee/spec/features/boards/sidebar_spec.rb
ee/spec/features/boards/sidebar_spec.rb
+2
-2
No files found.
app/assets/javascripts/sidebar/components/assignees/assignees.vue
View file @
7577fdbc
...
...
@@ -184,7 +184,7 @@ export default {
<i
aria-hidden=
"true"
data-hidden=
"true"
class=
"fa fa-exclamation-triangle"
></i>
</span>
<template
v-if=
"hasNoUsers"
>
<span
class=
"assign-yourself no-value"
>
<span
class=
"assign-yourself no-value
qa-assign-yourself
"
>
None
<template
v-if=
"editable"
>
-
<button
type=
"button"
class=
"btn-link"
@
click=
"assignSelf"
>
assign yourself
</button>
...
...
ee/spec/features/boards/sidebar_spec.rb
View file @
7577fdbc
...
...
@@ -91,7 +91,7 @@ describe 'Issue Boards', :js do
wait_for_requests
expect
(
page
).
to
have_content
(
'No assigne
e'
)
expect
(
find
(
'.qa-assign-yourself'
)).
to
have_content
(
'Non
e'
)
end
expect
(
card_two
).
not_to
have_selector
(
'.avatar'
)
...
...
@@ -101,7 +101,7 @@ describe 'Issue Boards', :js do
click_card
(
card2
)
page
.
within
(
find
(
'.assignee'
))
do
expect
(
page
).
to
have_content
(
'No assigne
e'
)
expect
(
find
(
'.qa-assign-yourself'
)).
to
have_content
(
'Non
e'
)
click_button
'assign yourself'
...
...
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