Skip to content

Commit

Permalink
bug #5643 Fix js for 'between' filters (b1rdex)
Browse files Browse the repository at this point in the history
This PR was squashed before being merged into the 4.x branch.

Discussion
----------

Fix js for 'between' filters

Fixes #5639 #5536

<!--
Thanks for your contribution! If you are proposing a new feature that is complex,
please open an issue first so we can discuss about it.

Note: all your contributions adhere implicitly to the MIT license
-->

Commits
-------

8d4e5c4 Fix js for 'between' filters
  • Loading branch information
javiereguiluz committed Feb 20, 2023
2 parents 8c2d8ee + 8d4e5c4 commit 4c909c7
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ class App {
return;
}

secondValue.style.display = comparisonWidget.value === 'between' ? '' : 'none';
toggleVisibilityClasses(secondValue, comparisonWidget.value !== 'between');
});
});
}
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/Resources/public/entrypoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
"entrypoints": {
"app": {
"css": [
"/app.db040f2c.css",
"/app.db040f2c.rtl.css"
"/app.d7820573.css",
"/app.d7820573.rtl.css"
],
"js": [
"/app.7ef09592.js"
"/app.3f8ee14e.js"
]
},
"form": {
"js": [
"/form.89417636.js"
"/form.1b89f5d0.js"
]
},
"page-layout": {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/Resources/public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"app.css": "app.db040f2c.css",
"app.rtl.css": "app.db040f2c.rtl.css",
"app.js": "app.7ef09592.js",
"form.js": "form.89417636.js",
"app.css": "app.d7820573.css",
"app.rtl.css": "app.d7820573.rtl.css",
"app.js": "app.3f8ee14e.js",
"form.js": "form.1b89f5d0.js",
"page-layout.js": "page-layout.3347892e.js",
"page-color-scheme.js": "page-color-scheme.a1568167.js",
"field-boolean.js": "field-boolean.33d03224.js",
Expand Down

0 comments on commit 4c909c7

Please sign in to comment.