Rename sidebar and topbar

This commit is contained in:
Simon Ser 2020-06-26 15:16:07 +02:00
parent 1b0ac4339f
commit 15c51d9ec7
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
4 changed files with 20 additions and 20 deletions

View file

@ -59,7 +59,7 @@ function compareBuffers(a, b) {
export default function BufferList(props) {
return html`
<ul id="buffer-list">
<ul>
${Array.from(this.props.buffers.values()).sort(compareBuffers).map(buf => html`
<${BufferItem} key=${buf.name} buffer=${buf} onClick=${() => props.onBufferClick(buf.name)} active=${props.activeBuffer == buf.name}/>
`)}