diff --git a/frontend/src/component/feature/form/feature-type-select-component.jsx b/frontend/src/component/feature/form/feature-type-select-component.jsx index ae56e59164..804eff4b9a 100644 --- a/frontend/src/component/feature/form/feature-type-select-component.jsx +++ b/frontend/src/component/feature/form/feature-type-select-component.jsx @@ -4,7 +4,8 @@ import MySelect from '../../common/select'; class FeatureTypeSelectComponent extends Component { componentDidMount() { - if (this.props.fetchFeatureTypes) { + const { fetchFeatureTypes, types } = this.props; + if (types[0].inital && fetchFeatureTypes) { this.props.fetchFeatureTypes(); } }