mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
correct linting error
This commit is contained in:
parent
6d10812b26
commit
2e0a87a2ff
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ export default createWidget('post-links', {
|
|||
let titleCount = 0;
|
||||
|
||||
let hasMore = links.any((l) => {
|
||||
if (this.state.collapsed && titleCount === 5) { return true; }
|
||||
if (state.collapsed && titleCount === 5) { return true; }
|
||||
|
||||
let title = l.title;
|
||||
if (title && !seenTitles[title]) {
|
||||
|
|
Loading…
Reference in a new issue