1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-07 01:41:39 +00:00

[tags] 'Tagged Files' dialog: modified UI

This commit is contained in:
llj
2022-03-07 11:19:18 +08:00
parent a64c774b75
commit e89ddd856b

View File

@@ -70,15 +70,15 @@ class ListTaggedFilesDialog extends React.Component {
render() { render() {
let taggedFileList = this.state.taggedFileList; let taggedFileList = this.state.taggedFileList;
return ( return (
<Modal isOpen={true}> <Modal isOpen={true} style={{maxWidth: '678px'}}>
<ModalHeader toggle={this.props.onClose}>{gettext('Tagged Files')}</ModalHeader> <ModalHeader toggle={this.props.onClose}>{gettext('Tagged Files')}</ModalHeader>
<ModalBody className="dialog-list-container"> <ModalBody className="dialog-list-container">
<table> <table>
<thead> <thead>
<tr> <tr>
<th width='45%' className="ellipsis">{gettext('Name')}</th> <th width='50%' className="ellipsis">{gettext('Name')}</th>
<th width='22%'>{gettext('Size')}</th> <th width='20%'>{gettext('Size')}</th>
<th width='25%'>{gettext('Last Update')}</th> <th width='22%'>{gettext('Last Update')}</th>
<th width='8%'></th> <th width='8%'></th>
</tr> </tr>
</thead> </thead>