Skip to content

Commit

Permalink
index.html: fix potentially unreachable code
Browse files Browse the repository at this point in the history
  • Loading branch information
ES-Alexander committed Jul 4, 2024
1 parent ef402af commit f3a0cbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dvl-a50/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ <h2>Water Linked DVL Configuration Page</h2>
this.enabled = data.enabled
this.orientation = data.orientation
this.origin = data.origin
if (this.newOrigin === ['0','0']) {
if (this.newOrigin == ['0','0']) {
this.newOrigin = data.origin
}
this.rangefinder = data.rangefinder
Expand Down

0 comments on commit f3a0cbd

Please sign in to comment.