"...git@developer.sourcefind.cn:chenpangpang/voicechat2.git" did not exist on "46168259831650c2cdbfc9b356ccf3064085e822"
Commit 8f2e7996 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix

parent 1241bc3e
...@@ -46,8 +46,8 @@ ...@@ -46,8 +46,8 @@
} }
onMount(() => { onMount(() => {
selectedReason = message.annotation.reason; selectedReason = message?.annotation?.reason ?? '';
comment = message.annotation.comment; comment = message?.annotation?.comment;
loadReasons(); loadReasons();
}); });
......
...@@ -982,6 +982,7 @@ ...@@ -982,6 +982,7 @@
? 'visible' ? 'visible'
: 'invisible group-hover:visible'} p-1.5 hover:bg-black/5 dark:hover:bg-white/5 rounded-lg dark:hover:text-white hover:text-black transition regenerate-response-button" : 'invisible group-hover:visible'} p-1.5 hover:bg-black/5 dark:hover:bg-white/5 rounded-lg dark:hover:text-white hover:text-black transition regenerate-response-button"
on:click={() => { on:click={() => {
showRateComment = false;
regenerateResponse(message); regenerateResponse(message);
}} }}
> >
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment