Skip to content

Commit 98ca8a7

Browse files
committed
fixed search crash
1 parent de933a1 commit 98ca8a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/project-editor/ui-components/Output.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ const MessageContent = observer(
203203

204204
let text =
205205
typeof this.props.message.text == "string"
206-
? this.props.message.text.toString()
207-
: this.props.message.text;
206+
? this.props.message.text
207+
: this.props.message.text?.toString() ?? "";
208208
if (text.length > MAX_OUTPUT_MESSAGE_TEXT_SIZE) {
209209
text = text.substring(0, MAX_OUTPUT_MESSAGE_TEXT_SIZE) + "...";
210210
}

0 commit comments

Comments
 (0)