We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec5ca47 commit 7287ffbCopy full SHA for 7287ffb
src/models/issue.js
@@ -55,7 +55,12 @@ class issue extends hasTimes {
55
get labels() {
56
let labels = _.difference(this.data.labels, this.config.get('excludeLabels'));
57
let include = this.config.get('includeLabels');
58
- return include.length > 0 ? _.intersection(labels, include) : labels;
+ labels = include.length > 0 ? _.intersection(labels, include) : labels;
59
+ return labels.join(';');
60
+ }
61
+
62
+ get web_url() {
63
+ return this.data.web_url;
64
}
65
66
get milestone() {
0 commit comments