fix: reranker item uid updated, chat image size issue, #2280

This commit is contained in:
jialin
2025-06-25 16:49:46 +08:00
parent a4d1d3b16c
commit 3889c1fa71
6 changed files with 10 additions and 8 deletions
@@ -88,7 +88,6 @@ const fieldConfig: ParamsSchema[] = [
const GroundReranker: React.FC<MessageProps> = forwardRef((props, ref) => {
const { modelList } = props;
const messageId = useRef<number>(0);
const intl = useIntl();
const requestSource = useRequestToken();
const [show, setShow] = useState(false);
@@ -236,8 +235,8 @@ const GroundReranker: React.FC<MessageProps> = forwardRef((props, ref) => {
};
const setMessageId = () => {
messageId.current = messageId.current + 1;
return messageId.current;
const uid = inputListRef.current?.setMessageId();
return uid;
};
const handleStopConversation = () => {
@@ -414,12 +413,12 @@ const GroundReranker: React.FC<MessageProps> = forwardRef((props, ref) => {
setTextList([
{
text: '',
uid: -1,
uid: setMessageId(),
name: ''
},
{
text: '',
uid: -2,
uid: setMessageId(),
name: ''
}
]);
@@ -530,7 +529,6 @@ const GroundReranker: React.FC<MessageProps> = forwardRef((props, ref) => {
</div>
<div className="docs-wrapper">
<InputList
key={messageId.current}
ref={inputListRef}
textList={textList}
showLabel={false}
@@ -17,6 +17,8 @@ import ThinkContent from './think-content';
const AudioWrapper = styled.div`
padding-top: 10px;
height: max-content;
margin-right: 10px;
`;
interface MessageBodyProps {