1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-24 12:58:34 +00:00

Merge pull request #2656 from haiwen/file-tag-improve

File tag improve
This commit is contained in:
Daniel Pan
2018-12-18 10:26:29 +08:00
committed by GitHub
7 changed files with 70 additions and 23 deletions

View File

@@ -82,7 +82,7 @@ class EditFileTagDialog extends React.Component {
let repoTagIdList = this.getRepoTagIdList();
return (
<Modal isOpen={true} toggle={this.toggle}>
<ModalHeader toggle={this.toggle}>{gettext('File Tags')}</ModalHeader>
<ModalHeader toggle={this.toggle}>{gettext('Select Tags')}</ModalHeader>
<ModalBody>
{
<ul className="tag-list tag-list-container">
@@ -102,7 +102,7 @@ class EditFileTagDialog extends React.Component {
}
</ModalBody>
<ModalFooter>
<Button color="primary" onClick={this.toggle}>{gettext('Close')}</Button>
<Button onClick={this.toggle}>{gettext('Close')}</Button>
</ModalFooter>
</Modal>
);