Daily updates from Odoo
Friday, February 27, 2026
1 change · saas-18.3
Enhancements to existing features
This update makes the Gantt chart's date selection more responsive. Previously, date changes required clicking 'Apply' to update the display. Now, date selections update immediately in the UI, providing a smoother and more intuitive user experience. This change enhances usability and efficiency when working with project timelines.
Original PR description
- Previously, the Gantt scale selector only updated the displayed date range after the "Apply" button was clicked. This was because the template was bound to the component props rather than the local state. - This commit binds the date picker display to the local pickerValues state. Now, when a user selects a date in the picker, the UI updates immediately, while the actual data fetch remains deferred until "Apply" is clicked. Task: 5932671