Skip to content
This repository was archived by the owner on Mar 24, 2023. It is now read-only.

Commit 40bb43b

Browse files
Merge pull request #667 from 10Dimensional/master
Fixed typing bug on app settings page
2 parents a59a191 + 8f80603 commit 40bb43b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

web/init/src/components/config_render/ConfigRender.jsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import React from "react";
22
import keyBy from "lodash/keyBy";
3+
import debounce from "lodash/debounce";
34
import _ from "lodash";
45

56
import ConfigGroups from "./ConfigGroups";
@@ -12,6 +13,7 @@ export default class ConfigRender extends React.Component {
1213
this.state= {
1314
groups: this.props.fields
1415
}
16+
this.triggerChange = debounce(this.triggerChange, 300);
1517
}
1618

1719
triggerChange = (data) => {

0 commit comments

Comments
 (0)