Monday, November 30, 2020
2 changes · master
Resolved issues and error corrections
The website editor's table picker now expands beyond its container instead of being trapped behind scrolling. This makes it easier for users to choose table sizes when editing content.
Original PR description
Description of the issue/feature this PR addresses: The table picker is hard to use because its container scrolls instead of letting it overflow. Desired behavior after PR is merged: The table picker expands outside of the container. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Odoo now gives internal fields default display names when they are accessed directly from Python code. This prevents confusing output or infinite loops in developer workflows, improving reliability without changing day-to-day business features.
Original PR description
From python code, import a module class and print one of its field, it creates an infinite recursion due to `model_name` and `name` field attributes being accessed by `__str__` but only being set when accessing a model through the environment. This commit provide a default values for the field name and the field model name to prevent that infinite recursion.