- Issue created by @thalemn
- π³π±Netherlands johnv
Thisis already fixed in #3498546-3: "Copy previous day" operation does not copy AM/PM selections β . Please try latest version, or DEV version.
- πΊπΈUnited States thalemn
@johnv the latest version of the module works as expected, but when I have JS aggregation turned on, that's when I get the error message. So I am going to do some testing to see why this is happening. Any suggestions would be great. Thanks for a great module! You can close this issue.
- π³π±Netherlands johnv
I toggled between yes/no aggregated, and I cannot repeat that problem, using Drupal11.1.
Automatically closed - issue fixed for 2 weeks with no activity.
- π»π³Vietnam cp19112000
I encountered the same error in version 8.x-1.21, Drupal 9.5.11, and resolved it by changing "FALSE" to "false"
slot.find('.form-checkbox').prop('checked', FALSE);
to
slot.find('.form-checkbox').prop('checked', false);
Now everything works well.