tx state history - append note to first op of diff

feature/default_network_editable
kumavis 7 years ago
parent c9c0e6f674
commit df59ef9942
  1. 7
      app/scripts/lib/tx-state-history-helper.js

@ -20,8 +20,11 @@ function migrateFromSnapshotsToDiffs(longHistory) {
)
}
function generateHistoryEntry(previousState, newState) {
return jsonDiffer.compare(previousState, newState)
function generateHistoryEntry(previousState, newState, note) {
const entry = jsonDiffer.compare(previousState, newState)
// Add a note to the first op, since it breaks if we append it to the entry
if (note && entry[0]) entry[0].note = note
return entry
}
function replayHistory(shortHistory) {

Loading…
Cancel
Save