odoo/o-spreadsheet#6724
Created by fw-bot
Merged
at 39f76012728f0b463a7dfa9eb203d744ba897ecc
Statuses:
- label
- odoo:18.0-17.0-fix-link-row-resize-rmbh-444750-fw
- head
- 427b67048ab4fa5d2fc871ea2af8c3525890c0d3
- merged
- 1 month ago by Ronakkumar Mukeshbhai Bharadiya (rmbh)
odoo/o-spreadsheet | |
---|---|
17.0 | #6671 |
18.0 | #6724 |
saas-18.1 | #6726 |
saas-18.2 | #6727 |
saas-18.3 | #6729 |
saas-18.4 | #6731 |
master | #6733 |
[FIX] header_size: resize row based on link label instead of full link
Description:
Before this commit:
- Row height was calculated using the full Markdown link (label + URL),
which could lead to incorrect row resizing when word wrap was enabled.
After this commit:
- Only the link label is used to compute row height,
resulting in accurate sizing.
Task: 4886598
review checklist
- [ ] feature is organized in plugin, or UI components
- [ ] support of duplicate sheet (deep copy)
- [ ] in model/core: ranges are Range object, and can be adapted (adaptRanges)
- [ ] in model/UI: ranges are strings (to show the user)
- [ ] undo-able commands (uses this.history.update)
- [ ] multiuser-able commands (has inverse commands and transformations where needed)
- [ ] new/updated/removed commands are documented
- [ ] exportable in excel
- [ ] translations (_t("qmsdf %s", abc))
- [ ] unit tested
- [ ] clean commented code
- [ ] track breaking changes
- [ ] doc is rebuild (npm run doc)
- [ ] status is correct in Odoo
Forward-Port-Of: #6671