Skip to content

Commit

Permalink
fixup! fix(ivy): sanitization for Host Bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKushnir committed Jan 8, 2019
1 parent b1a891c commit 9a1db6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/test/render3/host_binding_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ describe('host bindings', () => {
}
if (rf & RenderFlags.Update) {
const fn = isAttribute ? elementAttribute : elementProperty;
fn(elementIndex, prop, bind(ctx[prop]), sanitizeFn, true);
(fn as any)(elementIndex, prop, bind(ctx[prop]), sanitizeFn, true);
}
}
});
Expand Down

0 comments on commit 9a1db6a

Please sign in to comment.