vogievetsky commented on code in PR #15742:
URL: https://github.com/apache/druid/pull/15742#discussion_r1466738803
##########
web-console/src/components/auto-form/auto-form.tsx:
##########
@@ -84,6 +84,7 @@ export interface Field<M> {
}
function toNumberOrUndefined(n: unknown): number | undefined {
+ if (n == null) return
Review Comment:
you need a `;` to comply with the code style.
This section of the web console readme
https://github.com/apache/druid/blob/fb08bac01a20723988b0be31452ce14a87a12207/web-console/README.md#developing
talks about how to set up your editor to take care of this for you
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]