Skip to content

Commit 51d67cf

Browse files
changelog: graph view
1 parent 62ab67a commit 51d67cf

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,22 @@ ones in. -->
1515

1616
### Enhancements
1717

18+
[#1108](https://github.com/cylc/cylc-ui/pull/1108) -
19+
Graph view: A new view which displays tasks and dependencies as a graph (like
20+
the Cylc 7 graph view).
21+
22+
[#1108](https://github.com/cylc/cylc-ui/pull/1108) -
23+
Tree view: Task messages are now shown along with outputs.
24+
1825
[#1124](https://github.com/cylc/cylc-ui/pull/1075) - Table view: More options
1926
for number of tasks per page.
2027

2128
### Fixes
2229

30+
[#1108](https://github.com/cylc/cylc-ui/pull/1108) -
31+
Tree view: Task outputs are now correctly associated with the jobs that created
32+
them.
33+
2334
[#1075](https://github.com/cylc/cylc-ui/pull/1075) - Reverse default sort order
2435
of the table view so it matches the tree view.
2536

src/store/workflows.module.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,8 @@ const mutations = {
518518
CREATE: createTree,
519519
UPDATE: update,
520520
UPDATE_DELTAS (state, updated) {
521-
// console.log('@ UPDATE')
521+
// eslint-disable-next-line no-console
522+
console.log('@ UPDATE')
522523
for (const updatedValue of Object.values(pick(updated, KEYS))) {
523524
const items = isArray(updatedValue) ? updatedValue : [updatedValue]
524525
for (const updatedData of items) {
@@ -527,7 +528,8 @@ const mutations = {
527528
}
528529
}
529530
}
530-
// console.log('@@')
531+
// eslint-disable-next-line no-console
532+
console.log('@@')
531533
},
532534
// remove an ID
533535
REMOVE: remove,

0 commit comments

Comments
 (0)