oops, initialise fixups per-object, not per-prototype

pull/21833/head
Matthew Hodgson 2016-01-07 10:18:18 +00:00
parent 296b626ed9
commit fd32362aa6
1 changed files with 1 additions and 2 deletions

View File

@ -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);
},