Skip to content

Commit

Permalink
fix: opacity 0 not respected (#444)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGreatRefrigerator authored Jul 12, 2024
2 parents 5821cc4 + 8f056e8 commit 394a589
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export default {
computed: {
routeOpacity () {
let opacity = lodash.get(this.route, 'properties.opacity')
if (opacity) {
if (lodash.isNumber(opacity)) {
return opacity
} else {
return 0.9
Expand Down

0 comments on commit 394a589

Please sign in to comment.