diff --git a/src/components/Common/CommonComponent/index.js b/src/components/Common/CommonComponent/index.js index 9adc491..a5588e2 100644 --- a/src/components/Common/CommonComponent/index.js +++ b/src/components/Common/CommonComponent/index.js @@ -101,6 +101,11 @@ export default class CommonComponent extends Component { InputA = Input; AutoCompleteA = AutoComplete; TextAreaA = TextArea; + } else { + InputNumberA = reactComponentDebounce(300)(InputNumber); + InputA = reactComponentDebounce(300)(Input); + AutoCompleteA = reactComponentDebounce(300)(AutoComplete); + TextAreaA = reactComponentDebounce(500)(TextArea); } }