1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-04 08:28:11 +00:00

remove library name column (#2990)

This commit is contained in:
王健辉
2019-02-23 15:09:12 +08:00
committed by Daniel Pan
parent d18b5c5bc0
commit 70376864b8

View File

@@ -25,8 +25,7 @@ class ListCreatedFileDialog extends React.Component {
<Table>
<thead>
<tr>
<th width='50%'>{gettext('Name')}</th>
<th width='25%'>{gettext('Library Name')}</th>
<th width='75%'>{gettext('Name')}</th>
<th width='25%'>{gettext('Time')}</th>
</tr>
</thead>
@@ -37,7 +36,6 @@ class ListCreatedFileDialog extends React.Component {
return (
<tr key={index}>
<td><a href={fileURL} target='_blank'>{item.name}</a></td>
<td>{item.repo_name}</td>
<td>{moment(item.time).fromNow()}</td>
</tr>
);