unical1988 commented on code in PR #1244: URL: https://github.com/apache/answer/pull/1244#discussion_r1977443958
########## ui/src/pages/Install/components/SecondStep/index.tsx: ########## @@ -46,13 +46,36 @@ const sqlData = [ }, ]; +const sslModes = [ + { + value: 'require', + }, + { + value: 'verify-ca', + }, + { + value: 'verify-full', + }, +]; + const Index: FC<Props> = ({ visible, data, changeCallback, nextCallback }) => { const { t } = useTranslation('translation', { keyPrefix: 'install' }); const checkValidated = (): boolean => { let bol = true; Review Comment: @shuashuai you mean I should include the disabled case? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@answer.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org