Skip to content

Commit

Permalink
chore: remove ArcGIS Feature from map service options in external layer
Browse files Browse the repository at this point in the history
  • Loading branch information
jenniferarnesen committed Oct 28, 2024
1 parent 6ac453d commit 85523d2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/config/field-overrides/externalMapLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,17 @@ export default new Map([
},
},
],
[
'mapService',
{
required: true,
component: props => {
const options = props.options.filter(
option => option.value !== 'ARCGIS_FEATURE'
);

return <DropDown {...props} options={options} />;
},
},
],
]);

0 comments on commit 85523d2

Please sign in to comment.