|
|
|
@@ -6,7 +6,7 @@ |
|
|
|
|
|
|
|
import { CommonTabKeys } from '@/enums'; |
|
|
|
import { CloseOutlined } from '@ant-design/icons'; |
|
|
|
import { ConfigProvider, Form, Input } from 'antd'; |
|
|
|
import { ConfigProvider, Form, Input, Typography } from 'antd'; |
|
|
|
import { RuleObject } from 'antd/es/form'; |
|
|
|
import classNames from 'classnames'; |
|
|
|
import './index.less'; |
|
|
|
@@ -120,7 +120,12 @@ function ParameterInput({ |
|
|
|
> |
|
|
|
{valueObj?.showValue ? ( |
|
|
|
<div className="parameter-input__content"> |
|
|
|
<span className="parameter-input__content__value">{valueObj?.showValue}</span> |
|
|
|
<Typography.Text |
|
|
|
className="parameter-input__content__value" |
|
|
|
ellipsis={{ tooltip: valueObj.showValue }} |
|
|
|
> |
|
|
|
{valueObj.showValue} |
|
|
|
</Typography.Text> |
|
|
|
<CloseOutlined |
|
|
|
className="parameter-input__content__close-icon" |
|
|
|
onClick={handleRemove} |
|
|
|
|