mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +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'];
|
countFilter.select = ['id'];
|
||||||
|
|
||||||
const resultsPromise = Db.collections.Execution!.find({
|
const resultsPromise = Db.collections.Execution!.find({
|
||||||
select: ['id', 'workflowData'],
|
select: [
|
||||||
|
'id',
|
||||||
|
'finished',
|
||||||
|
'mode',
|
||||||
|
'retryOf',
|
||||||
|
'retrySuccessId',
|
||||||
|
'startedAt',
|
||||||
|
'stoppedAt',
|
||||||
|
'workflowData',
|
||||||
|
],
|
||||||
where: filter,
|
where: filter,
|
||||||
order: {
|
order: {
|
||||||
startedAt: "DESC",
|
startedAt: "DESC",
|
||||||
|
|||||||
Reference in New Issue
Block a user