Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patch to allow multiple filter_url_params to function
Multiple filter_url_params in UI_component will fail due to missing / separator in sprintf function. Otherwise the 2nd url parameter will be compiled into the value of the first parameter such as SKU/12345pr/ when in fact the second variable passed was PR/PULLREQUEST/ as part of SKU/12345/pr/PULLREQUEST! Only happens when you pass multiple variables to in ui_component such as ` <argument name="data" xsi:type="array"> <item name="config" xsi:type="array"> <item name="update_url" xsi:type="url" path="mui/index/render"/> <item name="filter_url_params" xsi:type="array"> <item name="customer_number" xsi:type="string">*</item> <item name="sku" xsi:type="string">*</item> </item> </item> </argument> `
- Loading branch information