Skip to content

Commit

Permalink
Fix for bug which cleared reference collumns on every spreadsheet update
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinschaich committed Jul 11, 2019
1 parent a273ec0 commit 57f33f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/google.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ const updateSheets = async (updates, options) => {
})

// Clear automated sheet ranges
await clearRanges(_.map(requiredSheetTitles, title => `${title}!${firstTransactionColumn}:${lastReferenceColumn}`))
await clearRanges(_.map(requiredSheetTitles, title => `${title}!${firstTransactionColumn}:${lastTransactionColumn}`))

let updatedRanges = []

Expand Down

0 comments on commit 57f33f4

Please sign in to comment.