File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,22 @@ ones in. -->
15
15
16
16
### Enhancements
17
17
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
+
18
25
[ #1124 ] ( https://github.com/cylc/cylc-ui/pull/1075 ) - Table view: More options
19
26
for number of tasks per page.
20
27
21
28
### Fixes
22
29
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
+
23
34
[ #1075 ] ( https://github.com/cylc/cylc-ui/pull/1075 ) - Reverse default sort order
24
35
of the table view so it matches the tree view.
25
36
Original file line number Diff line number Diff line change @@ -518,7 +518,8 @@ const mutations = {
518
518
CREATE : createTree ,
519
519
UPDATE : update ,
520
520
UPDATE_DELTAS ( state , updated ) {
521
- // console.log('@ UPDATE')
521
+ // eslint-disable-next-line no-console
522
+ console . log ( '@ UPDATE' )
522
523
for ( const updatedValue of Object . values ( pick ( updated , KEYS ) ) ) {
523
524
const items = isArray ( updatedValue ) ? updatedValue : [ updatedValue ]
524
525
for ( const updatedData of items ) {
@@ -527,7 +528,8 @@ const mutations = {
527
528
}
528
529
}
529
530
}
530
- // console.log('@@')
531
+ // eslint-disable-next-line no-console
532
+ console . log ( '@@' )
531
533
} ,
532
534
// remove an ID
533
535
REMOVE : remove ,
You can’t perform that action at this time.
0 commit comments