Merge pull request #2412 from Yidadaa/fix-2409

fix: #2409 empty prompt id cause crash
main
Yifei Zhang 2 years ago committed by GitHub
commit f7e4b36746
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -215,7 +215,7 @@ function ContextPromptItem(props: {
const [focusingInput, setFocusingInput] = useState(false);
return (
<Draggable draggableId={props.prompt.id.toString()} index={props.index}>
<Draggable draggableId={props.prompt.id || props.index.toString()} index={props.index}>
{(provided) => (
<div
className={chatStyle["context-prompt-row"]}

Loading…
Cancel
Save