Import board: import comments and log activities

This commit is contained in:
Xavier Priour 2015-10-19 00:59:50 +02:00
parent 469d47cd9f
commit 4540bd36c4
5 changed files with 179 additions and 93 deletions

View file

@ -60,11 +60,22 @@ BlazeComponent.extendComponent({
}, card.title));
},
listLabel() {
return this.currentData().list().title;
},
sourceLink() {
const source = this.currentData().source;
return source && Blaze.toHTML(HTML.A({
href: source.url,
}, source.system));
if(source) {
if(source.url) {
return Blaze.toHTML(HTML.A({
href: source.url,
}, source.system));
} else {
return source.system;
}
}
return null;
},
memberLink() {