mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
🐛 Fix bug that old executions did get displayed as running
This commit is contained in:
parent
e82deba47b
commit
78bf3a5a28
|
@ -767,7 +767,16 @@ class App {
|
|||
countFilter.select = ['id'];
|
||||
|
||||
const resultsPromise = Db.collections.Execution!.find({
|
||||
select: ['id', 'workflowData'],
|
||||
select: [
|
||||
'id',
|
||||
'finished',
|
||||
'mode',
|
||||
'retryOf',
|
||||
'retrySuccessId',
|
||||
'startedAt',
|
||||
'stoppedAt',
|
||||
'workflowData',
|
||||
],
|
||||
where: filter,
|
||||
order: {
|
||||
startedAt: "DESC",
|
||||
|
|
Loading…
Reference in a new issue