Daily updates from Odoo
Sunday, July 26, 2026
1 change
Enhancements to existing features
This update modernizes how internal web interface components reference page elements, using the current framework approach. It does not change business features or workflows, but helps keep the codebase safer and easier to maintain.
Original PR description
…ef() Component ref fields were declared as `someRef = signal(null)` and bound in templates via `t-ref="this.someRef"`. This predates the introduction of `signal.ref()` in owl 3, which is functionally identical but typed as `Signal<HTMLElement | null>` instead of `Signal<null>`. Convert all such ref fields to `signal.ref()`. Non-ref value signals are left untouched.