fix: row-textarea upload img

This commit is contained in:
jialin
2026-03-26 17:59:33 +08:00
committed by jialin
parent c74118e913
commit 08330e0b82
6 changed files with 163 additions and 116 deletions
+7 -1
View File
@@ -308,7 +308,13 @@ const GroundEmbedding: React.FC<MessageProps> = forwardRef((props, ref) => {
newList[index] = {
...current,
content: '',
imgs: list
imgs: list.map((item) => {
return {
...item,
width: 32,
height: 32
};
})
};
}
return newList;