Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Fix a regression introduced by #8075
Browse files Browse the repository at this point in the history
  • Loading branch information
GreenRecycleBin committed Jun 22, 2017
1 parent f3efaa1 commit 850d822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/renderer/components/bookmarks/bookmarksToolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class BookmarksToolbar extends ImmutableComponent {
}
updateBookmarkData (props) {
// TODO(darkdh): Remove siteSort when we have #9030 landed
this.bookmarks = siteUtil.getBookmarks(props.sites).sort(siteUtil.siteSort)
this.bookmarks = siteUtil.getBookmarks(props.sites).toList().sort(siteUtil.siteSort)

const noParentItems = this.bookmarks
.filter((bookmark) => !bookmark.get('parentFolderId'))
Expand Down

0 comments on commit 850d822

Please sign in to comment.