diff options
| author | crupest <crupest@outlook.com> | 2020-12-19 21:02:56 +0800 |
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2020-12-19 21:02:56 +0800 |
| commit | d228666d81cefaa12e1323849878f2585479ae4b (patch) | |
| tree | 96a36d2f1ee512ed72c1bcb9730aa41a442af27c /FrontEnd/src/app/views/common | |
| parent | f55c01fe569fa8a87fe244d6e759a96afcbbec24 (diff) | |
| download | timeline-d228666d81cefaa12e1323849878f2585479ae4b.tar.gz timeline-d228666d81cefaa12e1323849878f2585479ae4b.tar.bz2 timeline-d228666d81cefaa12e1323849878f2585479ae4b.zip | |
chore: Fix code format.
Diffstat (limited to 'FrontEnd/src/app/views/common')
| -rw-r--r-- | FrontEnd/src/app/views/common/OperationDialog.tsx | 8 |
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); |
