-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix a couple of possible errors #1513
Conversation
if (node.familyTree?.length) { | ||
const rootFamily = node.familyTree[0] | ||
return rootFamily.children | ||
} else { | ||
return [] | ||
} | ||
return rootFamily.children | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note this can be a 1-liner if you prefer
return node.familyTree?.[0]?.children ?? []
Or
const rootFamily = node.familyTree?.[0]
return rootFamily?.children ?? []
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't prefer those, they read very complex.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I find them very intuitive
Tested both bugs - could reproduce on master but not on this branch ✔️
|
* Fixes an issue where a task might not have a firstParent. * Closes cylc#1470 * Fixes a traceback when opening the tree view. * To replicate, close all views, open the simple tree view, wait for it to load, then open the tree view.
Check List
CONTRIBUTING.md
and added my name as a Code Contributor.setup.cfg
(andconda-environment.yml
if present).CHANGES.md
entry included if this is a change that can affect users?.?.x
branch.