I’m trying to create a default filter in the Frappe CRM Deals list view. It doesn’t honor the filters that are created with the doctype and I’m pretty sure I need to modify Deals.vue. I’ve tried updating the ViewControls section as follows and rebuilding the Vue project but it doesn’t have any impact. Any suggestions?
<ViewControls
ref="viewControls"
v-model="deals"
v-model:loadMore="loadMore"
v-model:resizeColumn="triggerResize"
v-model:updatedPageCount="updatedPageCount"
doctype="CRM Deal"
:options="{
allowedViews: ['list', 'group_by', 'kanban'],
filters: [['status', 'not like', '%closed%']],
}"
/>