Skip to content

Commit 32231c3

Browse files
authored
Fix grouping error in Execution viewlet configuration (#9568)
1 parent 9cbca57 commit 32231c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

models/process/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ export function createModel (builder: Builder): void {
728728
baseMenuClass: process.class.Execution
729729
},
730730
viewOptions: {
731-
groupBy: ['process', 'status', 'card'],
731+
groupBy: ['process', 'currentState', 'card'],
732732
orderBy: [
733733
['modifiedOn', SortingOrder.Descending],
734734
['createdOn', SortingOrder.Descending]
@@ -753,12 +753,12 @@ export function createModel (builder: Builder): void {
753753
key: 'card'
754754
},
755755
{
756-
key: '',
756+
key: 'process',
757757
label: process.string.Process,
758758
presenter: process.component.ExecutonPresenter
759759
},
760760
{
761-
key: '',
761+
key: 'currentState',
762762
label: process.string.Step,
763763
presenter: process.component.ExecutonProgressPresenter
764764
},

0 commit comments

Comments
 (0)