Unable to select text in resizable grid

I need to have Ext.panel.Grids (v6.2.0) that are both resizable and allow users to select the cell values.

I have a bunch grids that I’ve set to be resizable with:

resizable: {
    pinned: true,
    handles: 's'
}

the problem now, even with overrides on the Table view…

Ext.override(Ext.view.Table, {
    enableTextSelection: true
})

… I can no longer select the text within the grids. If I remove the resizing the grids allow me to select the record values to copy and paste later.

I’ve tried overriding the column’s enableTextSelection, too, but that still didn’t work.