mirror of https://github.com/openspug/spug
fix issue
parent
fa271f4a5f
commit
6a609ac5a6
|
@ -50,7 +50,7 @@ export default observer(function () {
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={10}>
|
<Col span={10}>
|
||||||
<Form.Item required label="版本数量" tooltip="早于指定数量的历史版本会被删除,以释放磁盘空间。">
|
<Form.Item required label="版本数量" tooltip="早于指定数量的历史版本会被删除,以释放磁盘空间。">
|
||||||
<Input value={info['versions']} onChange={e => info['versions'] = e.target.value} placeholder="请输入部署目标路径"/>
|
<Input value={info['versions']} onChange={e => info['versions'] = e.target.value} placeholder="请输入保存的版本数量"/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
</Row>
|
</Row>
|
||||||
|
|
|
@ -77,6 +77,10 @@ function ComTable() {
|
||||||
dataIndex: 'created_at',
|
dataIndex: 'created_at',
|
||||||
sorter: (a, b) => a['created_at'].localeCompare(b['created_at']),
|
sorter: (a, b) => a['created_at'].localeCompare(b['created_at']),
|
||||||
hide: true
|
hide: true
|
||||||
|
}, {
|
||||||
|
title: '发布时间',
|
||||||
|
dataIndex: 'do_at',
|
||||||
|
hide: true
|
||||||
}, {
|
}, {
|
||||||
title: '备注',
|
title: '备注',
|
||||||
dataIndex: 'desc',
|
dataIndex: 'desc',
|
||||||
|
|
Loading…
Reference in New Issue