Skip to content

Commit

Permalink
fix user menu channels-select > 1
Browse files Browse the repository at this point in the history
  • Loading branch information
ug.rp committed May 17, 2024
1 parent d191277 commit 3d9a761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/r4-app-user-menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default class R4AppUserMenu extends LitElement {
<menu>
<li>${this.channel ? this.renderAdd() : null}</li>
<li>${this.renderChannelLinks()}</li>
<li>${this.channels ? this.renderChannelSelect() : null}</li>
<li>${this.channels.length > 1 ? this.renderChannelSelect() : null}</li>
</menu>
`
}
Expand Down

0 comments on commit 3d9a761

Please sign in to comment.