mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2026-04-26 04:54:27 +08:00
fix bug
This commit is contained in:
@@ -513,7 +513,7 @@ function ImportConfigModal(props: { onClose?: () => void }) {
|
|||||||
autoFocus
|
autoFocus
|
||||||
placeholder={Locale.Settings.Sync.Config.ImportModal.Placeholder}
|
placeholder={Locale.Settings.Sync.Config.ImportModal.Placeholder}
|
||||||
value={importString}
|
value={importString}
|
||||||
rows={props.rows ?? 3}
|
rows={props?.rows ?? 3}
|
||||||
onInput={(e) => {
|
onInput={(e) => {
|
||||||
setImportString(e.currentTarget.value);
|
setImportString(e.currentTarget.value);
|
||||||
}}
|
}}
|
||||||
|
|||||||
Reference in New Issue
Block a user