1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-05 00:43:53 +00:00

Update review (#2481)

This commit is contained in:
C_Q
2018-10-30 11:07:01 +08:00
committed by Daniel Pan
parent 6c221e341d
commit 87287c6f02
9 changed files with 126 additions and 12 deletions

View File

@@ -49,7 +49,7 @@ class DraftListItem extends React.Component {
let draft = this.props.draft;
let filePath = draft.draft_file_path;
let repoID = draft.origin_repo_id;
let url = siteRoot + 'lib/' + repoID + '/file' + filePath + '?mode=edit&draft_id=' + draft.id;
let url = siteRoot + 'lib/' + repoID + '/file' + filePath + '?mode=edit';
window.open(url);
}