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
ce3d8af0
Commit
ce3d8af0
authored
Jul 21, 2020
by
Scott Stern
Committed by
Enrique Alcántara
Jul 21, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bulk_assignment_labels_spec.rb for issuables_lsit
parent
3c6cd063
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
app/assets/javascripts/issuables_list/components/issuable.vue
...assets/javascripts/issuables_list/components/issuable.vue
+1
-0
app/assets/javascripts/issuables_list/components/issuables_list_app.vue
...ascripts/issuables_list/components/issuables_list_app.vue
+7
-1
spec/features/issues/bulk_assignment_labels_spec.rb
spec/features/issues/bulk_assignment_labels_spec.rb
+0
-3
No files found.
app/assets/javascripts/issuables_list/components/issuable.vue
View file @
ce3d8af0
...
...
@@ -239,6 +239,7 @@ export default {
<!-- Bulk edit checkbox -->
<div
v-if=
"isBulkEditing"
class=
"gl-mr-3"
>
<input
:id=
"`selected_issue_$
{issuable.id}`"
:checked="selected"
class="selected-issuable"
type="checkbox"
...
...
app/assets/javascripts/issuables_list/components/issuables_list_app.vue
View file @
ce3d8af0
...
...
@@ -356,7 +356,13 @@ export default {
</ul>
<div
v-else-if=
"issuables.length"
>
<div
v-if=
"isBulkEditing"
class=
"issue px-3 py-3 border-bottom border-light"
>
<input
type=
"checkbox"
:checked=
"allIssuablesSelected"
class=
"mr-2"
@
click=
"onSelectAll"
/>
<input
id=
"check-all-issues"
type=
"checkbox"
:checked=
"allIssuablesSelected"
class=
"mr-2"
@
click=
"onSelectAll"
/>
<strong>
{{
__
(
'
Select all
'
)
}}
</strong>
</div>
<ul
...
...
spec/features/issues/bulk_assignment_labels_spec.rb
View file @
ce3d8af0
...
...
@@ -14,9 +14,6 @@ RSpec.describe 'Issues > Labels bulk assignment' do
context
'as an allowed user'
,
:js
do
before
do
# Make sure that issuables list FF is not turned on.
stub_feature_flags
(
vue_issuables_list:
false
)
project
.
add_maintainer
(
user
)
sign_in
user
...
...
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