Skip to content

Commit

Permalink
fix: Component properties
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertSmits authored and stasson committed Jan 19, 2018
1 parent 0de50f9 commit f3fcff4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/select/mdc-multi-option.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default {
},
computed: {
hasValue () {
return !(typeof value === 'undefined')
return !(typeof this.value === 'undefined')
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion components/select/mdc-native-option.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default {
},
computed: {
hasValue () {
return !(typeof value === 'undefined')
return !(typeof this.value === 'undefined')
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion components/snackbar/mdc-snackbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default {
data () {
return {
classes: {
'mdc-snackbar--align-start': this['align-start']
'mdc-snackbar--align-start': this.alignStart
},
message: '',
actionText: '',
Expand Down

0 comments on commit f3fcff4

Please sign in to comment.