mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-16 23:29:49 +00:00
remove library name column (#2990)
This commit is contained in:
@@ -25,8 +25,7 @@ class ListCreatedFileDialog extends React.Component {
|
|||||||
<Table>
|
<Table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th width='50%'>{gettext('Name')}</th>
|
<th width='75%'>{gettext('Name')}</th>
|
||||||
<th width='25%'>{gettext('Library Name')}</th>
|
|
||||||
<th width='25%'>{gettext('Time')}</th>
|
<th width='25%'>{gettext('Time')}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@@ -37,7 +36,6 @@ class ListCreatedFileDialog extends React.Component {
|
|||||||
return (
|
return (
|
||||||
<tr key={index}>
|
<tr key={index}>
|
||||||
<td><a href={fileURL} target='_blank'>{item.name}</a></td>
|
<td><a href={fileURL} target='_blank'>{item.name}</a></td>
|
||||||
<td>{item.repo_name}</td>
|
|
||||||
<td>{moment(item.time).fromNow()}</td>
|
<td>{moment(item.time).fromNow()}</td>
|
||||||
</tr>
|
</tr>
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user