akhilpb001 commented on a change in pull request #61:
URL:
https://github.com/apache/incubator-yunikorn-web/pull/61#discussion_r683997845
##########
File path: src/app/app.component.ts
##########
@@ -55,11 +55,11 @@ export class AppComponent implements OnInit {
do {
const childrenRoutes = currentRoute.children;
currentRoute = null;
- childrenRoutes.forEach(route => {
+ childrenRoutes.forEach((route) => {
Review comment:
Please configure your editor (VS Code) to not to add bracket around
single param in arrow function. If you are using VSCode and installed prettier,
you can configure this in prettier extension settings.
https://prettier.io/docs/en/options.html#arrow-function-parentheses
`prettier.arrowParens: "avoid"`
--
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]