mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
🐛 Fix bug that old executions did get displayed as running
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user