diff options
author | crupest <crupest@outlook.com> | 2021-07-01 21:41:43 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-07-01 21:41:43 +0800 |
commit | 15effe083a571baf4d2964c9fbf64581e01099e3 (patch) | |
tree | 037bdea3ca6fc60c796393011f08bb851d02fa57 | |
parent | 780e8f1ff8ff06b5d1dec9d5f705671f4d9449be (diff) | |
download | timeline-15effe083a571baf4d2964c9fbf64581e01099e3.tar.gz timeline-15effe083a571baf4d2964c9fbf64581e01099e3.tar.bz2 timeline-15effe083a571baf4d2964c9fbf64581e01099e3.zip |
fix: Fix post delete dialog bug.
-rw-r--r-- | FrontEnd/src/views/timeline-common/TimelinePostView.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FrontEnd/src/views/timeline-common/TimelinePostView.tsx b/FrontEnd/src/views/timeline-common/TimelinePostView.tsx index 652ff9c9..0954b912 100644 --- a/FrontEnd/src/views/timeline-common/TimelinePostView.tsx +++ b/FrontEnd/src/views/timeline-common/TimelinePostView.tsx @@ -119,6 +119,7 @@ const TimelinePostView: React.FC<TimelinePostViewProps> = (props) => { <ConfirmDialog title="timeline.post.deleteDialog.title" body="timeline.post.deleteDialog.prompt" + open onClose={() => { setDialog(null); setOperationMaskVisible(false); |