Skip to content

Commit

Permalink
fix(statsbar): remove redundant console.log (#2883)
Browse files Browse the repository at this point in the history
  • Loading branch information
sogehige committed Oct 27, 2019
1 parent f4b5289 commit edef661
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/panel/components/statsbar/statsbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,6 @@
else if (number === 0) return ''
else {
let f_difference: number | string = Math.abs(this.b_percentage ? (Math.round((current - number) / number * 1000) / 10) : current - number)
console.log({f_difference})
if (this.b_percentage) {
if (!isFinite(f_difference)) {
return '';
Expand Down

0 comments on commit edef661

Please sign in to comment.