Skip to content

Commit

Permalink
Fix lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Jan 30, 2019
1 parent 007f3cc commit 563bc85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mixins/element-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export const ElementMixin = dedupingMixin(base => {
// dependencies rather than itself.
if (info.computed) {
if (proto._hasReadOnlyEffect(name)) {
console.warn(`Cannot redefine computed property '${name}'.`)
console.warn(`Cannot redefine computed property '${name}'.`);
} else {
proto._createComputedProperty(name, info.computed, allProps);
}
Expand Down

0 comments on commit 563bc85

Please sign in to comment.