Skip to content

Commit

Permalink
fix: opacity 0 not respected
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGreatRefrigerator committed Jul 12, 2024
1 parent 5821cc4 commit 8f056e8
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 8f056e8

Please sign in to comment.