We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3761785 commit a7ea790Copy full SHA for a7ea790
src/Stores/UiStore.js
@@ -536,13 +536,15 @@ class UI {
536
return
537
}
538
const formatCommand = command => ({
539
+ time: command.date,
540
clientId: command.clientId,
541
payload: {
542
name: command.payload.name,
543
action: command.payload.action,
544
},
545
type: command.type,
546
})
547
+
548
const commands = JSON.stringify(this.session.commands.map(formatCommand))
549
fs.writeFile(this.exportFilePath + "/reactotron_timeline.txt", commands, err => {
550
if (err) {
0 commit comments