You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[FIX] util/fields : update field in context of custom search view
This commit aims to make views compatible which are generated when a
search filter is created using studio, view looks like
<data>
<xpath expr="xyz" position="after">
<filter name="filter1" context="{'group_by': 'renamed field'}"/>
<filter name="filter2" context="{'group_by': 'removed field'}"/>
</xpath>
</data>
Currently after upgrade this view will be disabled because we are not updating
the field in this view.
After this fix
view:
<data>
<xpath expr="xyz" position="after">
<filter name="filter1" context="{'group_by': 'New Name'}"/>
<filter name="filter2" context="{}"/>
</xpath>
</data>
0 commit comments