Skip to content

Commit

Permalink
Move settings to user menu
Browse files Browse the repository at this point in the history
  • Loading branch information
oskarrough committed May 25, 2024
1 parent fcfe403 commit 08e3615
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion src/components/r4-app-menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export default class R4AppMenu extends LitElement {
</li>
<li><a aria-current=${this.isCurrent('/explore')} href=${href + '/explore'}>Explore</a></li>
<li><a aria-current=${this.isCurrent('/map')} href=${href + '/map'}>Map</a></li>
<li><a aria-current=${this.isCurrent('/settings')} href=${href + '/settings'}>Settings</a></li>
</menu>
`
}
Expand Down
1 change: 1 addition & 0 deletions src/components/r4-app-user-menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export default class R4AppUserMenu extends LitElement {
<li>${this.channel ? this.renderAdd() : null}</li>
<li>${this.renderChannelLinks()}</li>
${this.channels.length > 1 ? html`<li>${this.renderChannelSelect()}</li>`: null}
<li><a aria-current=${this.isCurrent('/settings')} href=${href + '/settings'}>Settings</a></li>
</menu>
`
}
Expand Down

0 comments on commit 08e3615

Please sign in to comment.