Add Labels before or after Issue name in sidebar
That'd be nice to have the labels of an issue shown in the tree view of the sidebar.
Either before the Issue name: [label] Issue name
or after: Issue name [label]
Not sure if this would work (provided you'd place the label after the Issue name):
in src/data_providers/current_branch.js at line 81
Replace:
this.children.push(new SidebarTreeItem('Issue: #${issue.iid} · ${issue.title}', issue.web_url));
with:
this.children.push(new SidebarTreeItem('Issue: #${issue.iid} · ${issue.title} [${issue.labels}]', issue.web_url));
in src/data_providers/issuable.js at line 21
Replace:
const title = '${this.issuableSign}${issue.iid} · ${issue.title}';
with:
const title = '${this.issuableSign}${issue.iid} · ${issue.title} [${issue.labels}]';
Not sure if this solution is that simple =P