Commit ac57d834 authored by Simon Knox's avatar Simon Knox

fix up lint and exports

parent c8a4ec36
...@@ -103,6 +103,6 @@ export default { ...@@ -103,6 +103,6 @@ export default {
}, },
text: project => project.name, text: project => project.name,
}); });
} },
}; };
</script> </script>
/* 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) {
......
/* 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;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment