mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 04:15:25 +00:00
fix: call mode not working in landing page
This commit is contained in:
parent
86f822fd9a
commit
6f9080dfe0
1 changed files with 5 additions and 1 deletions
|
|
@ -83,7 +83,7 @@
|
|||
document.removeEventListener('mouseup', onMouseUp);
|
||||
});
|
||||
|
||||
$: if (!chatId) {
|
||||
const closeHandler = () => {
|
||||
showControls.set(false);
|
||||
showOverview.set(false);
|
||||
showArtifacts.set(false);
|
||||
|
|
@ -91,6 +91,10 @@
|
|||
if ($showCallOverlay) {
|
||||
showCallOverlay.set(false);
|
||||
}
|
||||
};
|
||||
|
||||
$: if (!chatId) {
|
||||
closeHandler();
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue