Skip to content

Commit

Permalink
Fixed #16804
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
brandonkelly committed Mar 4, 2025
1 parent fe15c91 commit ddb16a2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Fixed an error that could occur when generating an image transform URL via a console request. ([#16793](https://github.com/craftcms/cms/issues/16793))
- Fixed a bug where `_includes/forms/button.twig` was always adding `class="btngroup-btn-first"` to the resulting button HTML.
- Fixed a bug where Assets fields with `{slug}` in the subpath could create folders named after temporary slugs. ([#16799](https://github.com/craftcms/cms/issues/16799))
- Fixed a bug where date and time inputs without values were showing clear buttons. ([#16804](https://github.com/craftcms/cms/issues/16804))

## 4.14.9 - 2025-02-25

Expand Down
2 changes: 1 addition & 1 deletion src/web/assets/cp/dist/cp.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/cp/dist/cp.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/cp/src/js/Craft.js
Original file line number Diff line number Diff line change
Expand Up @@ -2746,7 +2746,7 @@ $.extend($.fn, {
datetime: function () {
return this.each(function () {
let $wrapper = $(this);
let $inputs = $wrapper.find('input:not([name$="[timezone]"])');
let $inputs = $wrapper.find('input.text');
let checkValue = () => {
let hasValue = false;
for (let i = 0; i < $inputs.length; i++) {
Expand Down

0 comments on commit ddb16a2

Please sign in to comment.