docs(Picker): fix popup content is inconsistent with the Chinese version (#12300)

* fix(Picker): fix  bug the content of the popup window is not consistent with the Chinese version under the English version

* fix(Picker): Fix the issue that scroll wheel selection list is not supported on pc

* fix(Picker): Rollback of new commits last one
This commit is contained in:
lllomh 2023-09-21 20:47:33 +08:00 committed by GitHub
parent 829afd5dbd
commit c0c0bdce17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,8 +44,7 @@ const t = useTranslate({
multipleColumns: 'Multiple Columns', multipleColumns: 'Multiple Columns',
customChildrenKey: 'Custom Columns Fields', customChildrenKey: 'Custom Columns Fields',
customChildrenColumns: customKeyColumns['en-US'], customChildrenColumns: customKeyColumns['en-US'],
toastContent: (value: string, index: number) => toastContent: (value: string) => `Value: ${value}`,
`Value: ${value}, Index${index}`,
}, },
}); });