Skip to content

Commit

Permalink
Fix meter number save bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mijdavis2 committed Aug 4, 2018
1 parent 39da3d3 commit 0779d2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "upstream",
"version": "2.5.3",
"version": "2.5.4",
"author": "mijdavis2",
"description": "Streamflow calc utility for Trout Unlimited",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/util/csvGen.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ St;Clock;"Tape, ft";Max Depth;Spins;"Time, Sec";ft/sec;"station, ft";"width, ft"
const channelSummary = this.siteData.channelSummary
const SITE_NAME = this.siteData.siteName
const METER_TYPE = siteVisitSummary['Meter type'].name
const METER_NUMBER = this.siteVisitSummary['Meter number']
const METER_NUMBER = siteVisitSummary['Meter number']
const const1 = siteVisitSummary['Meter type'].const1
const const2 = siteVisitSummary['Meter type'].const2
const SITE_ID = this.siteData.siteId
Expand Down

0 comments on commit 0779d2c

Please sign in to comment.