fix: update QA document default language from "Chinese" to "Chinese Simplified" (#17541)

This commit is contained in:
诗浓 2025-04-07 17:38:29 +08:00 committed by GitHub
parent e1439c4a5b
commit 8ab9eb9857
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -211,7 +211,7 @@ const StepTwo = ({
}
const [docLanguage, setDocLanguage] = useState<string>(
(datasetId && documentDetail) ? documentDetail.doc_language : (locale !== LanguagesSupported[1] ? 'English' : 'Chinese'),
(datasetId && documentDetail) ? documentDetail.doc_language : (locale !== LanguagesSupported[1] ? 'English' : 'Chinese Simplified'),
)
const [parentChildConfig, setParentChildConfig] = useState<ParentChildConfig>(defaultParentChildConfig)