Don't return the word cloaked for cloaked post, blank works fine :)

This commit is contained in:
Sam Saffron 2016-02-27 18:08:41 +11:00
parent 0a128852de
commit 1fde5a1993

View File

@ -404,7 +404,7 @@ export default createWidget('post', {
},
html(attrs) {
if (attrs.cloaked) { return 'cloaked'; }
if (attrs.cloaked) { return ''; }
return this.attach('post-article', attrs);
},