Skip to content
This repository has been archived by the owner on Nov 30, 2020. It is now read-only.

Commit

Permalink
fix: watched props set wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
matsp committed Nov 15, 2017
1 parent 7796d7b commit 7c8b8ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/LinearProgress/LinearProgress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ export default {
},
watch: {
progress () {
this.mdcLinearProgress.progress(progress)
this.mdcLinearProgress.progress(this.progress)
},
buffer () {
this.mdcLinearProgress.buffer(buffer)
this.mdcLinearProgress.buffer(this.buffer)
},
indeterminate () {
this.mdcLinearProgress.determinate = !this.indeterminate
Expand Down

0 comments on commit 7c8b8ef

Please sign in to comment.