|
|
|
@ -23,7 +23,7 @@ class TPMRepositoryCommits extends Component {
|
|
|
|
|
|
|
|
|
|
let collaborators = `/shixuns/` + id + `/commits.json`;
|
|
|
|
|
axios.post(collaborators, {
|
|
|
|
|
secret_repository: this.props.secret_repository_tab
|
|
|
|
|
secret_repository: this.props.secret_repository_tab === false ? undefined : this.props.secret_repository_tab
|
|
|
|
|
}).then((response) => {
|
|
|
|
|
|
|
|
|
|
if (response.status === 200) {
|
|
|
|
@ -58,19 +58,25 @@ class TPMRepositoryCommits extends Component {
|
|
|
|
|
is_jupyter={this.props.is_jupyter}
|
|
|
|
|
></TPMNav>
|
|
|
|
|
{loadingContent ?
|
|
|
|
|
<Loading />
|
|
|
|
|
<CircularProgress size={40} thickness={3}
|
|
|
|
|
style={{ marginLeft: 'auto', marginRight: 'auto', marginTop: '200px', display: 'block' }} />
|
|
|
|
|
:
|
|
|
|
|
|
|
|
|
|
<div className="" >
|
|
|
|
|
<div className="edu-back-white font-16 mb10 clearfix padding20">
|
|
|
|
|
<span className="fl"><i className="iconfont icon-tijiaojilu mr5"></i>
|
|
|
|
|
提交记录
|
|
|
|
|
提交记录
|
|
|
|
|
</span>
|
|
|
|
|
{/* 35 */}
|
|
|
|
|
<span className="color-grey-9 fr">
|
|
|
|
|
<Link to={`/shixuns/${match.params.shixunId}/repository/${match.params.repoId}`}
|
|
|
|
|
className="font-14 color-grey-9">返回</Link>
|
|
|
|
|
</span>
|
|
|
|
|
{/* 35 */}
|
|
|
|
|
<span className="color-grey-9 fr">
|
|
|
|
|
<Link to={`/shixuns/${match.params.shixunId}/repository/${match.params.repoId}`}
|
|
|
|
|
className="font-14 color-grey-9">返回</Link>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|