diff --git a/src/components/views/elements/TintableSvg.js b/src/components/views/elements/TintableSvg.js index 91f785d5bc..81fbed1921 100644 --- a/src/components/views/elements/TintableSvg.js +++ b/src/components/views/elements/TintableSvg.js @@ -24,8 +24,6 @@ var Tinter = require("../../../Tinter"); module.exports = React.createClass({ displayName: 'TintableSvg', - fixups: [], - propTypes: { src: React.PropTypes.string.isRequired, width: React.PropTypes.string.isRequired, @@ -34,6 +32,7 @@ module.exports = React.createClass({ }, componentWillMount: function() { + this.fixups = []; this.dispatcherRef = dis.register(this.onAction); },