1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-03 07:55:36 +00:00
This commit is contained in:
Michael An
2019-03-06 14:52:09 +08:00
committed by Daniel Pan
parent 3212cfdd0d
commit 0392d5cff7

View File

@@ -78,11 +78,12 @@ class ListRelatedFileDialog extends React.Component {
<Table hover size="sm" className="list-related-file-table">
<thead>
<tr>
<th width='50%'>{gettext('Name')}</th>
<th width='15%'>{gettext('Library Name')}</th>
<th width='15%'>{gettext('Size')}</th>
<th width='15%'>{gettext('Last Update')}</th>
<th width='40%'>{gettext('Name')}</th>
<th width='20%'>{gettext('Library Name')}</th>
<th width='13%'>{gettext('Size')}</th>
<th width='20%'>{gettext('Last Update')}</th>
<th width='5%'></th>
<th width='2%'></th>
</tr>
</thead>
<tbody>
@@ -145,6 +146,7 @@ class RelatedFile extends React.Component {
<td>{relatedFile.size}</td>
<td>{relatedFile.mtime_relative}</td>
<td><i className={className} onClick={this.props.onDeleteRelatedFile.bind(this, relatedFile)}></i></td>
<td></td>
</tr>
);
}