소스 검색

Merge pull request #3000 from open-webui/fix

fix
Timothy Jaeryang Baek 10 달 전
부모
커밋
481fd9f88a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/lib/components/chat/Messages/RateComment.svelte

+ 1 - 1
src/lib/components/chat/Messages/RateComment.svelte

@@ -47,7 +47,7 @@
 
 	onMount(() => {
 		selectedReason = message?.annotation?.reason ?? '';
-		comment = message?.annotation?.comment;
+		comment = message?.annotation?.comment ?? '';
 		loadReasons();
 	});