Skip to content
Snippets Groups Projects
Commit 233b18ea authored by srosse's avatar srosse
Browse files

OO-4363: don't overwrite hour and minute if date chooser is disabled

parent 56270cc7
No related branches found
No related tags found
No related merge requests found
...@@ -149,6 +149,7 @@ public class JSDateChooser extends TextElementImpl implements DateChooser { ...@@ -149,6 +149,7 @@ public class JSDateChooser extends TextElementImpl implements DateChooser {
@Override @Override
public void evalFormRequest(UserRequest ureq) { public void evalFormRequest(UserRequest ureq) {
super.evalFormRequest(ureq); super.evalFormRequest(ureq);
if(!isEnabled()) return;
try { try {
String receiverId = component.getFormDispatchId(); String receiverId = component.getFormDispatchId();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment