1
0
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:
Michael An
2024-11-20 20:37:46 +08:00
committed by GitHub
parent f07f357a86
commit 5d31590e9b
36 changed files with 129 additions and 127 deletions

View File

@@ -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}
/>
)}