Saturday, January 18, 2025
2 changes · saas-18.1
Resolved issues and error corrections
A planning test was updated so it checks shifts in the correct order. This helps prevent false build failures and keeps release validation more reliable without changing user-facing planning behavior.
Original PR description
The tour fails as it splits a wrong shift and the last shift can't be split, you can have a look at screenshot in failed builds. Fixed the order of pills to be checked. task-4491233
The transfer form layout was corrected so its two lists display at full width instead of being squeezed into half the space. This makes the screen easier to read and use for accounting teams managing automatic transfers.
Original PR description
The transfer form view contains two list views that were poorly displayed. The two were shrunk to half the available space. This is due to the fact that a group is by default two divs in a row each expecting one element, usually the label and the field value. However, only the value is to be displayed in our case. Hence, why the list only take up half of the space made avalailable by the group. To solve this, we can simply force the number of columns taken by the list to 2. task-4481314