mirror of
https://github.com/open-webui/open-webui
synced 2025-06-26 18:26:48 +00:00
fix: edit message issue
This commit is contained in:
parent
6594661d24
commit
7000a52485
@ -33,6 +33,8 @@
|
|||||||
let speaking = null;
|
let speaking = null;
|
||||||
|
|
||||||
$: if (message) {
|
$: if (message) {
|
||||||
|
edit = false;
|
||||||
|
editedContent = '';
|
||||||
renderStyling();
|
renderStyling();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,6 +39,11 @@
|
|||||||
edit = false;
|
edit = false;
|
||||||
editedContent = '';
|
editedContent = '';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
$: if (message) {
|
||||||
|
edit = false;
|
||||||
|
editedContent = '';
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class=" flex w-full">
|
<div class=" flex w-full">
|
||||||
|
Loading…
Reference in New Issue
Block a user