mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 21:42:58 +00:00
fix: share chat modal
This commit is contained in:
parent
9975cb17a9
commit
eca59f759d
@ -73,9 +73,11 @@
|
|||||||
export let show = false;
|
export let show = false;
|
||||||
|
|
||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
chat = await getChatById(localStorage.token, $chatId);
|
chatId.subscribe(async (value) => {
|
||||||
|
chat = await getChatById(localStorage.token, value);
|
||||||
console.log(chat);
|
console.log(chat);
|
||||||
});
|
});
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Modal bind:show size="sm">
|
<Modal bind:show size="sm">
|
||||||
|
Loading…
Reference in New Issue
Block a user