mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-04 16:31:13 +00:00
optimize save button's status
This commit is contained in:
@@ -11,7 +11,9 @@ import '../../css/file-view.css';
|
||||
|
||||
const propTypes = {
|
||||
onSaveChangedContent: PropTypes.func.isRequired,
|
||||
content: PropTypes.object.isRequired
|
||||
content: PropTypes.object.isRequired,
|
||||
isSaving: PropTypes.bool.isRequired,
|
||||
isContentChangedButNotSaved: PropTypes.bool.isRequired,
|
||||
};
|
||||
|
||||
const { isStarred, isLocked, lockedByMe,
|
||||
@@ -84,6 +86,8 @@ class FileView extends React.Component {
|
||||
isLocked={this.state.isLocked}
|
||||
lockedByMe={this.state.lockedByMe}
|
||||
onSaveChangedContent={this.props.onSaveChangedContent}
|
||||
isSaving={this.props.isSaving}
|
||||
isContentChangedButNotSaved={this.props.isContentChangedButNotSaved}
|
||||
toggleLockFile={this.toggleLockFile}
|
||||
toggleCommentPanel={this.toggleCommentPanel}
|
||||
/>
|
||||
|
Reference in New Issue
Block a user