Daily updates from Odoo
Saturday, November 9, 2024
1 change · 18.0
Resolved issues and error corrections
The helpdesk timesheet portal view was updated so it no longer depends on an English label when locating page content. This prevents crashes or broken display for users working in languages other than English.
Original PR description
Before this commit, the following selector could crash when the language is different than english: `//th[contains(text(), 'Task')]" position="replace">` Indeed, because `Task` will be translated and so `Task` will no longer find as text. This commit replaces that selector to make sure we no longer use a translated term in the xpath selector.