Skip to content

Commit

Permalink
fix closure compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Apr 4, 2019
1 parent 439c245 commit 002ef94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mixins/property-effects.js
Expand Up @@ -1415,7 +1415,7 @@ export const PropertyEffects = dedupingMixin(superClass => {
if (value !== node[prop] || typeof value == 'object') {
// Note, className needs style scoping so this needs wrapping.
if (prop === 'className') {
node = wrap(node);
node = /** @type {!Node} */(wrap(node));
}
node[prop] = value;
}
Expand Down

0 comments on commit 002ef94

Please sign in to comment.