Commit 0bfe4bc5 by zhaochengxiang

资产递归展示换名

parent 5c8f0919
......@@ -349,7 +349,7 @@ const AssetTable = (props) => {
}
const onRecursiveChange = (e) => {
setRecursive(e.target.checked);
setRecursive(!e.target.checked);
}
const exportAsset = () => {
......@@ -498,7 +498,7 @@ const AssetTable = (props) => {
</React.Fragment>
}
<Button onClick={onFilterElementClick}>要素设置</Button>
<Checkbox onChange={onRecursiveChange} checked={recursive}>递归展示</Checkbox>
<Checkbox onChange={onRecursiveChange} checked={!recursive}>仅显示当前目录</Checkbox>
</Space>
<Space>
<Input
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment