1
This commit is contained in:
parent
7a44697c56
commit
4caae86b10
@ -152,29 +152,29 @@ const NodeConfigDrawer: React.FC<NodeConfigDrawerProps> = ({
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Divider orientation="left">节点说明</Divider>
|
<Divider orientation="left">节点说明</Divider>
|
||||||
<div style={{ marginBottom: 16 }}>
|
{/*<div style={{ marginBottom: 16 }}>*/}
|
||||||
<p>{details.description}</p>
|
{/* <p>{details.description}</p>*/}
|
||||||
{details.features && details.features.length > 0 && (
|
{/* {details.features && details.features.length > 0 && (*/}
|
||||||
<div>
|
{/* <div>*/}
|
||||||
<strong>功能特点:</strong>
|
{/* <strong>功能特点:</strong>*/}
|
||||||
<ul>
|
{/* <ul>*/}
|
||||||
{details.features.map((feature, index) => (
|
{/* {details.features.map((feature, index) => (*/}
|
||||||
<li key={index}>{feature}</li>
|
{/* <li key={index}>{feature}</li>*/}
|
||||||
))}
|
{/* ))}*/}
|
||||||
</ul>
|
{/* </ul>*/}
|
||||||
</div>
|
{/* </div>*/}
|
||||||
)}
|
{/* )}*/}
|
||||||
{details.scenarios && details.scenarios.length > 0 && (
|
{/* {details.scenarios && details.scenarios.length > 0 && (*/}
|
||||||
<div>
|
{/* <div>*/}
|
||||||
<strong>适用场景:</strong>
|
{/* <strong>适用场景:</strong>*/}
|
||||||
<ul>
|
{/* <ul>*/}
|
||||||
{details.scenarios.map((scenario, index) => (
|
{/* {details.scenarios.map((scenario, index) => (*/}
|
||||||
<li key={index}>{scenario}</li>
|
{/* <li key={index}>{scenario}</li>*/}
|
||||||
))}
|
{/* ))}*/}
|
||||||
</ul>
|
{/* </ul>*/}
|
||||||
</div>
|
{/* </div>*/}
|
||||||
)}
|
{/* )}*/}
|
||||||
</div>
|
{/*</div>*/}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
@ -195,7 +195,7 @@ const NodeConfigDrawer: React.FC<NodeConfigDrawerProps> = ({
|
|||||||
</Space>
|
</Space>
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
{renderNodeDetails()}
|
{/*{renderNodeDetails()}*/}
|
||||||
<Divider orientation="left">节点配置</Divider>
|
<Divider orientation="left">节点配置</Divider>
|
||||||
<Form
|
<Form
|
||||||
form={form}
|
form={form}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user