Skip to content

Commit 0e217bc

Browse files
committed
[FIX] spreadsheet: chart side panel content should use full height
Before this commit: - Chart side panel content height matched only its inner content - This caused inner components to overflow and show awkward scrollbars After this commit: - Set panel content to h-100 to take the full available height. - Ensures proper layout and avoids unnecessary scroll behavior closes #8328 Task: 6080680 X-original-commit: 3dd022c Signed-off-by: Adrien Minne (adrm) <adrm@odoo.com> Signed-off-by: Ronakkumar Mukeshbhai Bharadiya (rmbh) <rmbh@odoo.com>
1 parent a9e3ba0 commit 0e217bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/side_panel/chart/main_chart_panel/main_chart_panel.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</div>
2020

2121
<t t-set="definition" t-value="getChartDefinition(this.chartId)"/>
22-
<div class="o-panel-content overflow-y-hidden">
22+
<div class="o-panel-content h-100 overflow-y-hidden">
2323
<div class="h-100" t-att-class="store.panel !== 'configuration' ? 'd-none' : ''">
2424
<div class="h-100 overflow-y-auto">
2525
<ChartTypePicker chartId="chartId" chartPanelStore="store"/>

0 commit comments

Comments
 (0)