I have an HTML component <svg width="90" height="90" ng-style="getSVGStyles()"> that gets its styles from a function.
For some reason, the filter css style is being discarded by Angular. Why? How do I avoid this?
scope.getSVGStyles = function () {
return {
filter: "invert(0%) sepia(8%) saturate(7500%) hue-rotate(118deg) brightness(96%) contrast(109%);",
};
};