Odoo shrinks the column header based on datatypes and when there are many fields in one2many tree view. the columns are shrinked.
When I checked the file list_editable_renderer.js under web folder There are these constants for column width
const fixedWidths = {
boolean: '70px',
date: '92px',
datetime: '146px',
float: '92px',
integer: '74px',
monetary: '104px',
};
I am just not able to solve this issue.
I tried changing few of the JS code, None seem to be working. Any help or guidance would be of a great help