Fix build cache (#1996)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2022-06-03 23:44:11 +07:00
committed by GitHub
parent 49572cc712
commit 09cc70dfd6
106 changed files with 2685 additions and 3205 deletions
@@ -42,16 +42,13 @@
})
}
}
const handleReconnect = (e: MouseEvent) => {
if (type?.reconnectComponent) {
showPopup(type.reconnectComponent, {}, eventToHTMLElement(e), reconnect)
}
}
</script>
<div class="flex-center">
<Button
label={setting.string.Reconnect}
kind={'primary'}
on:click={(e) => {
if (type?.reconnectComponent) {
showPopup(type.reconnectComponent, {}, eventToHTMLElement(e), reconnect)
}
}}
/>
<Button label={setting.string.Reconnect} kind={'primary'} on:click={handleReconnect} />
</div>