Don't use this in functional components

This works in preact, but doesn't with react.
This commit is contained in:
Simon Ser 2020-07-09 23:24:32 +02:00
parent 5cb38a9830
commit 0a825547a7
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -17,7 +17,7 @@ function MemberItem(props) {
export default function MemberList(props) {
return html`
<ul>
${Array.from(this.props.members.entries()).sort().map(([nick, membership]) => html`
${Array.from(props.members.entries()).sort().map(([nick, membership]) => html`
<${MemberItem} key=${nick} nick=${nick} membership=${membership} onClick=${() => props.onNickClick(nick)}/>
`)}
</ul>