Don't pass topic down to the widgets

This commit is contained in:
Robin Ward
2016-02-24 10:44:27 -05:00
parent 84919ca43a
commit 015eb47ea0
2 changed files with 2 additions and 3 deletions
@@ -145,7 +145,7 @@ export default class PostCooked {
}
_urlForPostNumber(postNumber) {
return (postNumber > 0) ? `${this.attrs.topic.get('url')}/${postNumber}` : this.attrs.topic.get('url');
return (postNumber > 0) ? `${this.attrs.topicUrl}/${postNumber}` : this.attrs.topicUrl;
}
_updateQuoteElements($aside, desc) {