diff --git a/components/buffer-header.js b/components/buffer-header.js
index 62b5b01..d75cb45 100644
--- a/components/buffer-header.js
+++ b/components/buffer-header.js
@@ -134,13 +134,13 @@ export default function BufferHeader(props) {
description = linkify(stripANSI(props.buffer.topic), props.onChannelClick);
}
if (props.buffer.joined) {
- actions = html`
+ actions.push(html`
- `;
+ `);
} else {
if (fullyConnected) {
actions.push(html`
@@ -150,13 +150,13 @@ export default function BufferHeader(props) {
>Join
`);
}
- actions = html`
+ actions.push(html`
- `;
+ `);
}
break;
case BufferType.NICK: