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
ac57d834
Commit
ac57d834
authored
Sep 01, 2017
by
Simon Knox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix up lint and exports
parent
c8a4ec36
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
7 deletions
+3
-7
app/assets/javascripts/boards/components/project_select.vue
app/assets/javascripts/boards/components/project_select.vue
+1
-1
app/assets/javascripts/boards/models/issue.js
app/assets/javascripts/boards/models/issue.js
+1
-1
app/assets/javascripts/boards/models/project.js
app/assets/javascripts/boards/models/project.js
+1
-5
No files found.
app/assets/javascripts/boards/components/project_select.vue
View file @
ac57d834
...
@@ -103,6 +103,6 @@ export default {
...
@@ -103,6 +103,6 @@ export default {
},
},
text
:
project
=>
project
.
name
,
text
:
project
=>
project
.
name
,
});
});
}
}
,
};
};
</
script
>
</
script
>
app/assets/javascripts/boards/models/issue.js
View file @
ac57d834
/* eslint-disable no-unused-vars, space-before-function-paren, arrow-body-style, arrow-parens, comma-dangle, max-len */
/* eslint-disable no-unused-vars, space-before-function-paren, arrow-body-style, arrow-parens, comma-dangle, max-len */
/* global ListLabel */
/* global ListLabel */
/* global ListMilestone */
/* global ListMilestone */
/* global IssueProject */
/* global ListAssignee */
/* global ListAssignee */
import
Vue
from
'
vue
'
;
import
Vue
from
'
vue
'
;
import
IssueProject
from
'
./project
'
;
class
ListIssue
{
class
ListIssue
{
constructor
(
obj
,
defaultAvatar
)
{
constructor
(
obj
,
defaultAvatar
)
{
...
...
app/assets/javascripts/boards/models/project.js
View file @
ac57d834
/* eslint-disable no-unused-vars */
export
default
class
IssueProject
{
class
IssueProject
{
constructor
(
obj
)
{
constructor
(
obj
)
{
this
.
id
=
obj
.
id
;
this
.
id
=
obj
.
id
;
this
.
path
=
obj
.
path
;
this
.
path
=
obj
.
path
;
}
}
}
}
window
.
IssueProject
=
IssueProject
;
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