fix initial render bug

This commit is contained in:
Donald Pipowitch 2020-01-13 08:36:24 +01:00
parent 1e30b753e8
commit a03a2c49ff

View File

@ -160,19 +160,17 @@ export class A11YPanel extends Component<A11YPanelProps, A11YPanelState> {
};
request = () => {
const { api, active } = this.props;
if (active) {
this.setState(
{
status: 'running',
},
() => {
api.emit(EVENTS.REQUEST);
// removes all elements from the redux map in store from the previous panel
store.dispatch(clearElements());
}
);
}
const { api } = this.props;
this.setState(
{
status: 'running',
},
() => {
api.emit(EVENTS.REQUEST);
// removes all elements from the redux map in store from the previous panel
store.dispatch(clearElements());
}
);
};
render() {