odoo/o-spreadsheet#6733
Created by fw-bot
Merged
at 6c754ede1f589f541854aef9d0fbd607a96f242a
Statuses:
- label
- odoo:master-17.0-fix-link-row-resize-rmbh-446872-fw
- head
- 1eee4aa6282455f985dc0fcbaeae53efeccf83a3
- 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