diff --git a/components/spin/index.jsx b/components/spin/index.jsx index faa51fa3cd..5fdade4e39 100644 --- a/components/spin/index.jsx +++ b/components/spin/index.jsx @@ -34,6 +34,12 @@ export default class Spin extends React.Component { } } + componentWillUnmount() { + if (this.debounceTimeout) { + clearTimeout(this.debounceTimeout); + } + } + getSpinning(props) { // Backwards support if ('spining' in props) {