Commit ac57d834 authored by Simon Knox's avatar Simon Knox

fix up lint and exports

parent c8a4ec36
......@@ -103,6 +103,6 @@ export default {
},
text: project => project.name,
});
}
},
};
</script>
/* eslint-disable no-unused-vars, space-before-function-paren, arrow-body-style, arrow-parens, comma-dangle, max-len */
/* global ListLabel */
/* global ListMilestone */
/* global IssueProject */
/* global ListAssignee */
import Vue from 'vue';
import IssueProject from './project';
class ListIssue {
constructor (obj, defaultAvatar) {
......
/* eslint-disable no-unused-vars */
class IssueProject {
export default class IssueProject {
constructor(obj) {
this.id = obj.id;
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