Tuesday, November 21, 2023
2 changes · master
Resolved issues and error corrections
This fix keeps the discard option available when saving a record triggers a validation error. Users no longer need to refresh the page to recover from an invalid edit, reducing disruption when correcting duplicate or conflicting entries.
Original PR description
Steps:
- Open Timeoff
- Go to Configuration
- Go to Public Holidays
- Create a new holiday
- on creating holiday on same date, validation error appears
- By clicking on save button, the error appears ,
there is no option discard records need to refresh page.
Issue:
- When the constraint is through during record edit, the save and
discard buttons are disabled, so the user cannot discord
Cause:
- Due to raise error the process stops and the button is not enabled.
Fix:
- Even if there is a raise error, the button will be enabled, so
the user can discard the record.
task-3470978Editing recurring calendar events no longer changes guests' response status to accepted unless they are the person making the update. This keeps attendance information accurate and avoids misleading confirmations for future or all occurrences.
Original PR description
Before this commit, when an user edited a recurring events in 'future_events' or 'all_events' update mode, most of the recurring events were being automatically accepted by guests (except current user) even though their state was not 'accepted' before updating. After this commit, after editing recurring events in 'future_events' or 'all_events' update mode, these events are not automatically accepted anymore by users different than the current user (who made the time update). Task-id: 3422584