Fixed: Shouldn't UI error if no settings exist for indexer

This commit is contained in:
Qstick
2021-05-10 21:29:43 -04:00
parent 7ea7676c15
commit b9f7a6b91c

View File

@@ -106,6 +106,7 @@ function EditIndexerModalContent(props) {
</FormGroup>
{
fields ?
fields.map((field) => {
return (
<ProviderFieldFormGroup
@@ -117,7 +118,8 @@ function EditIndexerModalContent(props) {
onChange={onFieldChange}
/>
);
})
}) :
null
}
<FormGroup
advancedSettings={advancedSettings}