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
0d805e56
Commit
0d805e56
authored
Mar 29, 2021
by
Natalia Tepluhina
Committed by
Nicolò Maria Mezzopera
Mar 29, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix updating GraphQL boards cards on assignees update
parent
c5b1f56d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
7 deletions
+6
-7
app/assets/javascripts/boards/components/board_content_sidebar.vue
...s/javascripts/boards/components/board_content_sidebar.vue
+1
-5
changelogs/unreleased/323554-setting-updating-assignees-in-the-graphql-sidebar-doesn-t-update-b.yml
...ing-assignees-in-the-graphql-sidebar-doesn-t-update-b.yml
+5
-0
spec/features/boards/sidebar_assignee_spec.rb
spec/features/boards/sidebar_assignee_spec.rb
+0
-2
No files found.
app/assets/javascripts/boards/components/board_content_sidebar.vue
View file @
0d805e56
...
...
@@ -51,10 +51,6 @@ export default {
},
methods
:
{
...
mapActions
([
'
toggleBoardItem
'
,
'
setAssignees
'
]),
updateAssignees
(
data
)
{
const
assignees
=
data
.
issueSetAssignees
?.
issue
?.
assignees
?.
nodes
||
[];
this
.
setAssignees
(
assignees
);
},
handleClose
()
{
this
.
toggleBoardItem
({
boardItem
:
this
.
activeIssue
,
sidebarType
:
this
.
sidebarType
});
},
...
...
@@ -78,7 +74,7 @@ export default {
:full-path=
"fullPath"
:initial-assignees=
"activeIssue.assignees"
class=
"assignee"
@
assignees-updated=
"
update
Assignees"
@
assignees-updated=
"
set
Assignees"
/>
<board-sidebar-epic-select
class=
"epic"
/>
<div>
...
...
changelogs/unreleased/323554-setting-updating-assignees-in-the-graphql-sidebar-doesn-t-update-b.yml
0 → 100644
View file @
0d805e56
---
title
:
Fix updating GraphQL boards cards on assignees update
merge_request
:
57687
author
:
type
:
fixed
spec/features/boards/sidebar_assignee_spec.rb
View file @
0d805e56
...
...
@@ -17,8 +17,6 @@ RSpec.describe 'Project issue boards sidebar assignee', :js do
let
(
:card
)
{
find
(
'.board:nth-child(2)'
).
first
(
'.board-card'
)
}
before
do
stub_feature_flags
(
graphql_board_lists:
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