FIX: Linting error

This commit is contained in:
Robin Ward 2018-06-20 13:44:03 -04:00
parent e7fbcf4ba4
commit 02cb944fee

View File

@ -220,7 +220,6 @@ createWidget("post-meta-data", {
},
html(attrs) {
let postInfo = [];
if (attrs.isWhisper) {
@ -289,7 +288,7 @@ createWidget("post-meta-data", {
if (this.settings.displayPosterName) {
result.push(this.attach("poster-name", attrs));
}
result.push(h('div.post-infos', postInfo));
result.push(h("div.post-infos", postInfo));
return result;
}