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
2cfbe0ec
Commit
2cfbe0ec
authored
Apr 12, 2017
by
Clement Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[skip ci] add comments
parent
07ca3dc4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
app/assets/javascripts/sidebar_assignees/components/expanded/single_assignee.js
.../sidebar_assignees/components/expanded/single_assignee.js
+1
-1
app/assets/javascripts/sidebar_assignees/sidebar_assignees_options.js
...avascripts/sidebar_assignees/sidebar_assignees_options.js
+0
-1
app/assets/javascripts/sidebar_assignees/stores/sidebar_assignees_store.js
...ripts/sidebar_assignees/stores/sidebar_assignees_store.js
+7
-0
No files found.
app/assets/javascripts/sidebar_assignees/components/expanded/single_assignee.js
View file @
2cfbe0ec
...
...
@@ -8,7 +8,7 @@ export default {
user
:
{
type
:
Object
,
required
:
true
,
}
}
,
},
computed
:
{
userUrl
()
{
...
...
app/assets/javascripts/sidebar_assignees/sidebar_assignees_options.js
View file @
2cfbe0ec
/* global Flash */
import
Vue
from
'
vue
'
;
import
eventHub
from
'
./event_hub
'
;
import
AssigneeTitle
from
'
./components/assignee_title
'
;
...
...
app/assets/javascripts/sidebar_assignees/stores/sidebar_assignees_store.js
View file @
2cfbe0ec
...
...
@@ -4,11 +4,18 @@ export default class SidebarAssigneesStore {
this
.
currentUserId
=
currentUserId
;
this
.
rootPath
=
rootPath
;
// Tracks the selected users
this
.
userIds
=
[];
// Tracks the rendered users
this
.
users
=
[];
this
.
loading
=
false
;
this
.
editable
=
editable
;
this
.
setUsers
(
assignees
);
assignees
.
forEach
(
a
=>
this
.
addUserId
(
a
.
id
));
}
...
...
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