mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-10 19:51:00 +00:00
(improvement)(webapp) optimize schema map content (#364)
This commit is contained in:
@@ -125,13 +125,11 @@ const SqlItem: React.FC<Props> = ({ llmReq, integrateSystem, sqlInfo, sqlTimeCos
|
||||
<div className={`${prefixCls}-schema-row`}>
|
||||
<div className={`${prefixCls}-schema-title`}>取值:</div>
|
||||
<div className={`${prefixCls}-schema-content`}>
|
||||
{linking.map((item: any) => {
|
||||
return (
|
||||
<span>
|
||||
{item.fieldName}: {item.fieldValue}
|
||||
</span>
|
||||
);
|
||||
})}
|
||||
{linking
|
||||
.map((item: any) => {
|
||||
return `${item.fieldName}: ${item.fieldValue}`;
|
||||
})
|
||||
.join('、')}
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user