Skip to content

Commit 2c20998

Browse files
committed
order by day in report with days
1 parent 1ac75e9 commit 2c20998

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

OpenFlow/src/public/Controllers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ module openflow {
596596
count: { $sum: 1 }
597597
}
598598
},
599-
{ $sort: { count: 1 } },
599+
{ $sort: { "_id.day": 1 } },
600600
{ "$limit": 20 }
601601
];
602602
var workflowruns = await this.api.Aggregate("openrpa_instances", agg);

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.535
1+
0.0.536

0 commit comments

Comments
 (0)