Daily updates from Odoo
Friday, July 5, 2024
3 changes
2 changes
Resolved issues and error corrections
This fixes an issue where the starred message counter could stay outdated in another browser tab after a starred message was deleted. The counter is now updated from the server, so users see a consistent and reliable count across tabs.
Original PR description
Before this PR, the star message counter was not updated on message deletion on tabs that were unaware of the message. Steps to reproduce the issue: - Open two tabs and log in as admin. - Star a message; the counter should show 1 on both tabs. - Reload one tab without accessing the channel. - Delete the starred message from the other tab. - Notice that the star counter on the second tab still shows 1. The issue arose because the client-side star counter updated based on partial information, specifically only when the message was starred. If the message had not been fetched, this information was unavailable. This PR resolves the issue by removing the client-side computation and implementing a server-side notification instead. runbot-61305,62004
Fixes an issue where applicants entering an invalid LinkedIn URL on a job application briefly saw a warning that then disappeared. The warning now remains visible when needed, helping applicants correct their information before submitting.
Original PR description
steps to reproduce -go to host/jobs -go to any job -put a wrong linkedin url -> the message is not displayed (after a blink) reason https://github.com/odoo/enterprise/pull/65011 this pr adds a js function (checkRedundant) that remove the warning message no matter what if its check are successful fix adds a condition and parma to check if the warning message should be removed or not task-4010892 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
1 change
Resolved issues and error corrections
The Studio app icon now maintains a consistent size of 70 pixels, matching all other app icons in the interface. Previously, the icon would resize when the browser window was resized, creating an inconsistent user experience. This fix ensures the Studio icon behaves the same way as other application icons.
Original PR description
This commit fixes the size of studio icons when the window is resized. The w-75 class was applied, which caused the element to be resized instead of keeping the desired width of 70px, like other icons do. Now, the icon keep the same dimensions, like any other app icon. task-3998287