mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-16 15:19:06 +00:00
fix some wrong text (#7070)
* fix some wrong text * fix some wrong text
This commit is contained in:
@@ -105,7 +105,7 @@ class SidePanel extends PureComponent {
|
||||
this.props.updateWikiConfig(config);
|
||||
};
|
||||
|
||||
toggelTrashDialog = () => {
|
||||
toggleTrashDialog = () => {
|
||||
this.setState({ isShowTrashDialog: !this.state.isShowTrashDialog });
|
||||
};
|
||||
|
||||
@@ -128,7 +128,7 @@ class SidePanel extends PureComponent {
|
||||
duplicatePage={this.duplicatePage}
|
||||
getCurrentPageId={this.props.getCurrentPageId}
|
||||
addPageInside={this.addPageInside}
|
||||
toggelTrashDialog={this.toggelTrashDialog}
|
||||
toggleTrashDialog={this.toggleTrashDialog}
|
||||
/>
|
||||
}
|
||||
</div>
|
||||
@@ -193,7 +193,7 @@ class SidePanel extends PureComponent {
|
||||
{this.state.isShowTrashDialog && (
|
||||
<WikiTrashDialog
|
||||
showTrashDialog={this.state.isShowTrashDialog}
|
||||
toggleTrashDialog={this.toggelTrashDialog}
|
||||
toggleTrashDialog={this.toggleTrashDialog}
|
||||
getWikiConfig={this.props.getWikiConfig}
|
||||
/>
|
||||
)}
|
||||
|
Reference in New Issue
Block a user