diff --git a/src/components/views/elements/TintableSvg.js b/src/components/views/elements/TintableSvg.js
index 91f785d5bc2638baa242f78b59001052df8bd096..81fbed1921c31277439f60cb20526044ea4f2778 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);
     },