Skip to content
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

Merged
merged 1 commit into from
Oct 20, 2023
Merged

fix a couple of possible errors #1513

merged 1 commit into from
Oct 20, 2023

Conversation

oliver-sanders
Copy link
Member

@oliver-sanders oliver-sanders commented Oct 13, 2023

Check List

  • I have read CONTRIBUTING.md and added my name as a Code Contributor.
  • Contains logically grouped changes (else tidy your branch by rebase).
  • Does not contain off-topic changes (use other PRs for other changes).
  • Applied any dependency changes to both setup.cfg (and conda-environment.yml if present).
  • Tests are included (or explain why tests are not needed).
  • CHANGES.md entry included if this is a change that can affect users
  • Cylc-Doc pull request opened if required at cylc/cylc-doc/pull/XXXX.
  • If this is a bug fix, PR should be raised against the relevant ?.?.x branch.

Comment on lines +25 to 31
if (node.familyTree?.length) {
const rootFamily = node.familyTree[0]
return rootFamily.children
} else {
return []
}
return rootFamily.children
}
Copy link
Member

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 ?? []

Copy link
Member Author

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.

Copy link
Member

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

@MetRonnie
Copy link
Member

MetRonnie commented Oct 17, 2023

Tested both bugs - could reproduce on master but not on this branch ✔️

(Missing changelog entry)

@oliver-sanders oliver-sanders requested a review from wxtim October 17, 2023 12:01
* 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.
@MetRonnie MetRonnie merged commit 43ce0b4 into cylc:master Oct 20, 2023
@oliver-sanders oliver-sanders deleted the 1470 branch October 23, 2023 08:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

TypeError during pruning causes tasks to be left behind as running when they have actually succeeded
3 participants