1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-31 14:42:10 +00:00

Bug repair (#2458)

This commit is contained in:
山水人家
2018-10-25 14:42:53 +08:00
committed by Daniel Pan
parent f3e0284751
commit 209237a22a
12 changed files with 80 additions and 91 deletions

View File

@@ -17,8 +17,8 @@ class FileActivitiesContent extends Component {
return <p className="error text-center">{error_msg}</p>;
} else {
return (
<React.Fragment>
<table className="table table-hover table-vcenter activity-table">
<div className="activity-table-container">
<table className="table table-hover table-vcenter">
<thead>
<tr>
<th width="8%">{/* avatar */}</th>
@@ -32,7 +32,7 @@ class FileActivitiesContent extends Component {
</table>
{has_more ? <span className="loading-icon loading-tip"></span> : ''}
{error_msg ? <p className="error text-center">{error_msg}</p> : ''}
</React.Fragment>
</div>
);
}
}