Product Filter - Price (Beta) block: Fix Filter is not applied when using the numeric inputs (#45327)
* Add missing `name` attribute to min and max input fields * Add changefile(s) from automation for the following project(s): woocommerce --------- Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
parent
26c19fa1f8
commit
bbd2e50a53
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
Comment: Fix an issue where the price filter was not applied when using the numeric inputs.
|
||||
|
|
@ -163,6 +163,7 @@ final class ProductFilterPrice extends AbstractBlock {
|
|||
sprintf(
|
||||
'<input
|
||||
class="min"
|
||||
name="min"
|
||||
type="text"
|
||||
value="%d"
|
||||
data-wc-bind--value="context.minPrice"
|
||||
|
@ -179,6 +180,7 @@ final class ProductFilterPrice extends AbstractBlock {
|
|||
sprintf(
|
||||
'<input
|
||||
class="max"
|
||||
name="max"
|
||||
type="text"
|
||||
value="%d"
|
||||
data-wc-bind--value="context.maxPrice"
|
||||
|
|
Loading…
Reference in New Issue