Is there a setting to remove/hide the settings section in the Editor widget?
Solved! Go to Solution.
Adding a CSS selector like this appears to work:
<style type="text/css">
div.esri-editor calcite-accordion-item[data-testid="settings"] {
display: none;
}
</style>
Adding a CSS selector like this appears to work:
<style type="text/css">
div.esri-editor calcite-accordion-item[data-testid="settings"] {
display: none;
}
</style>