Unverified Commit 251a439d authored by Guoxin's avatar Guoxin Committed by GitHub
Browse files

Merge pull request #1295 from lvybriage/dev-bug-filter

[fix issue#1263] The filter button of the intermediate result cannot be clicked
parents a7d99473 c329379d
......@@ -184,7 +184,9 @@ class Intermediate extends React.Component<IntermediateProps, IntermediateState>
this.setState({ filterSource: filterSource });
}
this.drawIntermediate(filterSource);
const counts = this.state.clickCounts + 1;
}
const counts = this.state.clickCounts + 1;
if (this._isMounted) {
this.setState({ isLoadconfirmBtn: false, clickCounts: counts });
}
});
......@@ -338,4 +340,4 @@ class Intermediate extends React.Component<IntermediateProps, IntermediateState>
}
}
export default Intermediate;
\ No newline at end of file
export default Intermediate;
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment