aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/app/views/common/OperationDialog.tsx
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-12-19 21:02:56 +0800
committercrupest <crupest@outlook.com>2020-12-19 21:02:56 +0800
commit328ec15a1d4d927c53c4b9da4219d58ca12a2f20 (patch)
tree45837ce0f768bd38aaa6fda14003624e68974cfa /FrontEnd/src/app/views/common/OperationDialog.tsx
parent0e6bff709af16d6196b5cef17cc8a8f69af97cca (diff)
downloadtimeline-328ec15a1d4d927c53c4b9da4219d58ca12a2f20.tar.gz
timeline-328ec15a1d4d927c53c4b9da4219d58ca12a2f20.tar.bz2
timeline-328ec15a1d4d927c53c4b9da4219d58ca12a2f20.zip
chore: Fix code format.
Diffstat (limited to 'FrontEnd/src/app/views/common/OperationDialog.tsx')
-rw-r--r--FrontEnd/src/app/views/common/OperationDialog.tsx8
1 files changed, 2 insertions, 6 deletions
diff --git a/FrontEnd/src/app/views/common/OperationDialog.tsx b/FrontEnd/src/app/views/common/OperationDialog.tsx
index 77ed851f..5887be48 100644
--- a/FrontEnd/src/app/views/common/OperationDialog.tsx
+++ b/FrontEnd/src/app/views/common/OperationDialog.tsx
@@ -172,9 +172,7 @@ const OperationDialog = <
setStep("process");
props
.onProcess(
- (values as unknown) as MapOperationInputInfoValueTypeList<
- OperationInputInfoList
- >
+ (values as unknown) as MapOperationInputInfoValueTypeList<OperationInputInfoList>
)
.then(
(d) => {
@@ -206,9 +204,7 @@ const OperationDialog = <
const { inputValidator } = props;
if (inputValidator != null) {
const result = inputValidator(
- (values as unknown) as MapOperationInputInfoValueTypeList<
- OperationInputInfoList
- >
+ (values as unknown) as MapOperationInputInfoValueTypeList<OperationInputInfoList>
);
setInputError(result);
return isNoError(result);