fix: 修复 combo 中使用 uuid 组件可能导致死循环的问题

This commit is contained in:
2betop 2023-11-01 19:18:58 +08:00
parent 5d9a284dd1
commit b3b96868aa

View File

@ -27,7 +27,7 @@ export default class UUIDControl extends React.Component<
}
componentDidUpdate(props: FormControlProps) {
if (!props.value) {
if (!props.value && props.formInited !== false) {
this.setValue();
}
}