Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
troyeguo committed Oct 29, 2023
1 parent 77c9070 commit 1b87032
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions public/lib/kookit/kookit.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/components/dialogs/aboutDialog/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class AboutDialog extends React.Component<AboutDialogProps, AboutDialogState> {
this.state.isShowExportAll
? {
position: "absolute",
left: "675px",
left: "680px",
top: "250px",
}
: { display: "none" }
Expand Down
2 changes: 1 addition & 1 deletion src/components/dialogs/actionDialog/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ class ActionDialog extends React.Component<
this.state.isShowExport
? {
position: "fixed",
left: this.props.left + (this.state.isExceed ? -200 : 200),
left: this.props.left + (this.state.isExceed ? -195 : 195),
top: this.props.top + 70,
}
: { display: "none" }
Expand Down

0 comments on commit 1b87032

Please sign in to comment.