Skip to content

Commit

Permalink
fix: linting and layout bug
Browse files Browse the repository at this point in the history
  • Loading branch information
friedjoff committed Apr 9, 2020
1 parent 150c8f6 commit 39c8f41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/src/locate.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ function locate(location = {}) {
if (locations[forestEcoregion][altitudinalZone][silverFirArea]) {
const id = locations[forestEcoregion][altitudinalZone][silverFirArea];
ecogram = ecograms[id];
} else if (locations[forestEcoregion][altitudinalZone]['unknown']) {
const id = locations[forestEcoregion][altitudinalZone]['unknown'];
} else if (locations[forestEcoregion][altitudinalZone].unknown) {
const id = locations[forestEcoregion][altitudinalZone].unknown;
ecogram = ecograms[id];
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/LocationResult.module.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.form:global(.ui.form) {
margin: 1em 0;
padding: 1em;
box-shadow: 0 0 20px #777;
box-shadow: 0 -20px 20px -20px #777;
}

0 comments on commit 39c8f41

Please sign in to comment.