1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-31 22:54:11 +00:00

adjust publish repo

This commit is contained in:
Michael An
2019-04-22 18:21:25 +08:00
parent 19a6f20098
commit b0790ab3e2
2 changed files with 17 additions and 8 deletions

View File

@@ -35,7 +35,6 @@ class WikiSelectDialog extends React.Component {
onChange = (repo) => {
this.setState({
name: repo.repo_name,
repoID: repo.repo_id,
});
}
@@ -53,15 +52,15 @@ class WikiSelectDialog extends React.Component {
render() {
return (
<Modal isOpen={true}>
<ModalHeader toggle={this.toggle}>{gettext('Publish a library')}</ModalHeader>
<ModalHeader toggle={this.toggle}>{gettext('Publish a Library')}</ModalHeader>
<ModalBody className="dialog-list-container">
<table>
<thead>
<tr>
<th width='12%'>{/* select */}</th>
<th width='13%'>{/* icon */}</th>
<th width='50%'>{gettext('Name')}</th>
<th width='25%'>{gettext('Last Update')}</th>
<th width='6%'>{/* select */}</th>
<th width='9%'>{/* icon */}</th>
<th width='55%'>{gettext('Name')}</th>
<th width='30%'>{gettext('Last Update')}</th>
</tr>
</thead>
<tbody>
@@ -80,7 +79,10 @@ class WikiSelectDialog extends React.Component {
</ModalBody>
<ModalFooter>
<Button color="secondary" onClick={this.toggle}>{gettext('Cancel')}</Button>
<Button color="primary" onClick={this.handleSubmit}>{gettext('Submit')}</Button>
{this.state.repoID ?
<Button color="primary" onClick={this.handleSubmit}>{gettext('Submit')}</Button>:
<Button color="primary" disabled>{gettext('Submit')}</Button>
}
</ModalFooter>
</Modal>
);