Skip to content

Commit 002ef94

Browse files
committed
fix closure compiler error
1 parent 439c245 commit 002ef94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mixins/property-effects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1415,7 +1415,7 @@ export const PropertyEffects = dedupingMixin(superClass => {
14151415
if (value !== node[prop] || typeof value == 'object') {
14161416
// Note, className needs style scoping so this needs wrapping.
14171417
if (prop === 'className') {
1418-
node = wrap(node);
1418+
node = /** @type {!Node} */(wrap(node));
14191419
}
14201420
node[prop] = value;
14211421
}

0 commit comments

Comments
 (0)