Skip to content

Commit

Permalink
fix(ui): eslint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Chau committed Apr 30, 2018
1 parent 3208844 commit 9d87b35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
m 0, -${size / 2}
a ${size / 2},${size / 2} 0 1 1 0,${size}
a ${size / 2},${size / 2} 0 1 1 0,-${size}`"
:stroke-dasharray="`${finalDasharray - .25} ${finalDasharray - .25}`"
:stroke-dasharray="`${finalDasharray - 0.25} ${finalDasharray - 0.25}`"
:stroke-dashoffset="finalDashoffset"
:stroke="stroke"
/>
Expand Down Expand Up @@ -133,9 +133,9 @@ export default {
},
isVisible (ratio) {
return ratio > .0025
return ratio > 0.0025
}
},
}
}
</script>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export default {
}
</script>


<style lang="stylus" scoped>
.test-view
padding 42px
Expand Down

0 comments on commit 9d87b35

Please sign in to comment.