diff options
author | crupest <crupest@outlook.com> | 2022-04-28 14:25:09 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-04-28 14:25:09 +0800 |
commit | 41e872d37677e8eba75a868f07205319889ffe9f (patch) | |
tree | 61afeb1ed09013e00f559d5ab7964da2708b5609 /FrontEnd/src/views/common/dailog/OperationDialog.tsx | |
parent | a4f5080c6dc8c3fc7f76aebb13cbf54c0ed7ef15 (diff) | |
download | timeline-41e872d37677e8eba75a868f07205319889ffe9f.tar.gz timeline-41e872d37677e8eba75a868f07205319889ffe9f.tar.bz2 timeline-41e872d37677e8eba75a868f07205319889ffe9f.zip |
...
Diffstat (limited to 'FrontEnd/src/views/common/dailog/OperationDialog.tsx')
-rw-r--r-- | FrontEnd/src/views/common/dailog/OperationDialog.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FrontEnd/src/views/common/dailog/OperationDialog.tsx b/FrontEnd/src/views/common/dailog/OperationDialog.tsx index 6bc846dd..b0ffdac9 100644 --- a/FrontEnd/src/views/common/dailog/OperationDialog.tsx +++ b/FrontEnd/src/views/common/dailog/OperationDialog.tsx @@ -1,6 +1,7 @@ import React, { useState } from "react"; import { useTranslation } from "react-i18next"; import { TwitterPicker } from "react-color"; +import classNames from "classnames"; import moment from "moment"; import { convertI18nText, I18nText, UiLogicError } from "@/common"; @@ -12,7 +13,6 @@ import LoadingButton from "../button/LoadingButton"; import Dialog from "./Dialog"; import "./OperationDialog.css"; -import classNames from "classnames"; interface DefaultErrorPromptProps { error?: string; @@ -42,7 +42,7 @@ export interface OperationDialogTextInput { initValue?: string; textFieldProps?: Omit< React.InputHTMLAttributes<HTMLInputElement>, - "type" | "value" | "onChange" | "aria-relevant" + "type" | "value" | "onChange" >; helperText?: string; } |