Don't set state.inputValue in constructor (#4606)

This commit is contained in:
Miguel Alatzar 2020-07-23 08:54:58 -07:00 committed by Miguel Alatzar
parent 2e3ff53988
commit f19701d704

View file

@ -41,7 +41,7 @@ export default class QuickActions extends PureComponent {
super(props);
this.state = {
inputValue: props.initialValue,
inputValue: '',
atDisabled: props.readonly,
slashDisabled: props.readonly,
};