We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41673de commit 5b1eda8Copy full SHA for 5b1eda8
1 file changed
omod/src/main/webapp/fragments/field/datetimepicker.gsp
@@ -168,7 +168,9 @@
168
<% } %>
169
170
jQuery("#${ config.id }-wrapper .icon-remove").click(function(event) {
171
- jQuery("#${ config.id } input").val("");
+ if (jQuery("#${ config.id } input").val() !== "") {
172
+ jQuery("#${ config.id } input").val("").change();
173
+ }
174
});
175
176
//Convert to client timezone.
0 commit comments