mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
👕 Fix lint issue
This commit is contained in:
@@ -67,7 +67,7 @@ export function sendSuccessResponse(res: Response, data: any, raw?: boolean, res
|
||||
res.json(data);
|
||||
} else {
|
||||
res.json({
|
||||
data
|
||||
data,
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -183,7 +183,7 @@ export function unflattenExecutionData(fullExecutionData: IExecutionFlattedDb):
|
||||
mode: fullExecutionData.mode,
|
||||
startedAt: fullExecutionData.startedAt,
|
||||
stoppedAt: fullExecutionData.stoppedAt,
|
||||
finished: fullExecutionData.finished ? fullExecutionData.finished : false
|
||||
finished: fullExecutionData.finished ? fullExecutionData.finished : false,
|
||||
});
|
||||
|
||||
return returnData;
|
||||
|
||||
Reference in New Issue
Block a user