Show "Manage network" even if upstream is disconnected

Fixes: 86853eb2e5 ("components/buffer-header: hide action buttons when disconnected")
This commit is contained in:
Simon Ser 2021-11-30 15:29:24 +01:00
parent 451bb4c73f
commit 1e84412172

View file

@ -90,6 +90,8 @@ export default function BufferHeader(props) {
if (props.server.isupport.get("BOUNCER_NETID")) { if (props.server.isupport.get("BOUNCER_NETID")) {
if (fullyConnected) { if (fullyConnected) {
actions.push(joinButton); actions.push(joinButton);
}
if (props.server.status === ServerStatus.REGISTERED) {
actions.push(html` actions.push(html`
<button <button
key="manage" key="manage"