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

Commit

Permalink
put settings at bottom of builtin pages sidenav
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrazee committed Aug 23, 2016
1 parent 8546284 commit 375593c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/builtin-pages/com/sidenav.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ co(function *() {
// fetch dynamic nav items
var moreNavItems = yield beakerBrowser.getHomePages()
moreNavItems = moreNavItems.filter(item => (typeof item.href == 'string') && (typeof item.label == 'string'))
navItems = navItems.concat(moreNavItems)
navItems = navItems.slice(0, 2).concat(moreNavItems).concat(navItems.slice(2))
update()
})

Expand Down

0 comments on commit 375593c

Please sign in to comment.