ewega commented on code in PR #8935: URL: https://github.com/apache/devlake/pull/8935#discussion_r3571295548
########## config-ui/src/plugins/components/connection-form/index.tsx: ########## @@ -59,6 +59,7 @@ const buildUpdateTestPayload = (connection: any, values: any, customHeaders: ICu dbUrl: isEqual(connection?.dbUrl, values.dbUrl) ? undefined : values.dbUrl, companyId: isEqual(connection?.companyId, values.companyId) ? undefined : values.companyId, organization: isEqual(connection?.organization, values.organization) ? undefined : values.organization, + enterprise: isEqual(connection?.enterprise, values.enterprise) ? undefined : values.enterprise, customHeaders: isEqual(connection?.customHeaders, customHeaders) ? undefined : customHeaders, Review Comment: Accepted. I updated the shared connection typings and the connection-test payload unions so enterprise is allowed in the frontend payloads. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
