Hi,
I'm using an Editor widget to allow users to add new features to a layer but they will not be able to update or delete existing features. To keep things simple, I'd like to remove the "Edit features" section of the widget and just display the "Create features" section.

I've set the "allowedWorkflows" property to ["create-features"]
I have the widget configured with a single layerInfo object and it has updateEnabled and deletedEnabled set to false.
editBikeLayerConfig = {
layer: layer,
addEnabled: true,
updateEnabled: false,
deleteEnabled: false,
formTemplate: {
elements: [{
type: "field",
fieldName: "Name",
label: "Name"
}]
}
};
const editor = new Editor({
view: view,
layerInfos: [editBikeLayerConfig],
allowedWorkflows: ["create-features"],
supportingWidgetDefaults: {
featureTemplates: {
visibleElements : {
filter: false
}
}
}
});
Is there a property that I can configure for this?
Thanks!
Jill