fix sequence sorting
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
48d9aa2c3e
commit
0f10ffa3c5
1 changed files with 1 additions and 1 deletions
|
@ -436,7 +436,7 @@ export default class MemberEventListSummary extends React.Component<IProps> {
|
||||||
|
|
||||||
// Sort types by order of lowest event index within sequence
|
// Sort types by order of lowest event index within sequence
|
||||||
const orderedTransitionSequences = Object.keys(aggregate.names).sort(
|
const orderedTransitionSequences = Object.keys(aggregate.names).sort(
|
||||||
(seq1, seq2) => aggregate.indices[seq2] - aggregate.indices[seq1],
|
(seq1, seq2) => aggregate.indices[seq1] - aggregate.indices[seq2],
|
||||||
);
|
);
|
||||||
|
|
||||||
return <EventListSummary
|
return <EventListSummary
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue