feat: use recordingMeta.createdAt
This commit is contained in:
@@ -21,7 +21,7 @@ const formatRecording = (recordingData: any) => {
|
|||||||
return {
|
return {
|
||||||
id: recordingMeta.id,
|
id: recordingMeta.id,
|
||||||
name: recordingMeta.name,
|
name: recordingMeta.name,
|
||||||
createdAt: new Date(recordingMeta.create_date).getTime(),
|
createdAt: new Date(recordingMeta.createdAt).getTime(),
|
||||||
inputParameters,
|
inputParameters,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -75,7 +75,7 @@ const formatRecordingById = (recordingData: any) => {
|
|||||||
return {
|
return {
|
||||||
id: recordingMeta.id,
|
id: recordingMeta.id,
|
||||||
name: recordingMeta.name,
|
name: recordingMeta.name,
|
||||||
createdAt: new Date(recordingMeta.create_date).getTime(),
|
createdAt: new Date(recordingMeta.createdAt).getTime(),
|
||||||
inputParameters,
|
inputParameters,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user