From 1a31fa90679ffb79c867ad34ecb87d01b09ae236 Mon Sep 17 00:00:00 2001 From: GyDi <zzzgydi@gmail.com> Date: Thu, 24 Nov 2022 10:26:25 +0800 Subject: [PATCH] fix: profile can not edit --- src/components/profile/editor-viewer.tsx | 2 +- src/components/profile/info-viewer.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/profile/editor-viewer.tsx b/src/components/profile/editor-viewer.tsx index ea15f5f..28608e9 100644 --- a/src/components/profile/editor-viewer.tsx +++ b/src/components/profile/editor-viewer.tsx @@ -77,7 +77,7 @@ export const EditorViewer = (props: Props) => { <Dialog open={open} onClose={onClose}> <DialogTitle>{t("Edit File")}</DialogTitle> - <DialogContent sx={{ width: 520, pb: 1 }}> + <DialogContent sx={{ width: 520, pb: 1, userSelect: "text" }}> <div style={{ width: "100%", height: "420px" }} ref={editorRef} /> </DialogContent> diff --git a/src/components/profile/info-viewer.tsx b/src/components/profile/info-viewer.tsx index 54215a6..ffeb3af 100644 --- a/src/components/profile/info-viewer.tsx +++ b/src/components/profile/info-viewer.tsx @@ -86,7 +86,7 @@ export const InfoViewer = (props: Props) => { <Dialog open={open} onClose={onClose}> <DialogTitle sx={{ pb: 0.5 }}>{t("Edit Info")}</DialogTitle> - <DialogContent sx={{ width: 336, pb: 1 }}> + <DialogContent sx={{ width: 336, pb: 1, userSelect: "text" }}> <TextField {...textFieldProps} disabled -- GitLab