Double Horizontal Scrollbar and unable to set width for columns on report builder

Hi,

following Double horizontal scrollbar on report builder · Issue #12520 · frappe/erpnext · GitHub and after updating to latest version today I’m still experiencing troubles in the report builder.

My report has the following info

{
  "fields": [
    [
      "customer_name",
      "Sales Invoice"
    ],
    [
      "posting_date",
      "Sales Invoice"
    ],
    [
      "is_return",
      "Sales Invoice"
    ],
    [
      "base_grand_total",
      "Sales Invoice"
    ],
    [
      "status",
      "Sales Invoice"
    ],
    [
      "name",
      "Sales Invoice"
    ],
    [
      "docstatus",
      "Sales Invoice"
    ],
    [
      "base_total_taxes_and_charges",
      "Sales Invoice"
    ]
  ],
  "order_by": "`tabSales Invoice`.`posting_time` desc",
  "add_total_row": 1,
  "filters": [
    [
      "Sales Invoice",
      "docstatus",
      "!=",
      "2",
      false
    ],
    [
      "Sales Invoice",
      "name",
      "not like",
      "%BLK%",
      false
    ]
  ]
}

I still see a double horizontal bar and I still cannot resize the columns as I see fit.

The moment I add a new column they get reset and half the columns are near 15px wide which means they’re unreadable.

Any ideas how to troubleshoot?

PS: In firefox I see 2 scrollbars in chrome one.
PS2: The problem with the widths is the same on both browsers.


I also noticed that I can remove the extra scrollbar by adding

.body-scrollable {
    overflow: visible;
}