Unable to select values in Report view

In particular system like Dell and particular browser Google Chrome the users are unable to select the value of field in Report view. Here is a screenshots. Kindly do needful.

This is Google Chrome


This is Microsoft Edge,

you can override the css:
example you have customer_app.css
then added this block


dt-cell {
    border: 1px solid #d1d8dd;
    border: 1px solid var(--dt-border-color);
    border-bottom: none;
    border-right: none;
    position: relative;
    outline: none;
    padding: 0;
    background-color: #fff;
    background-color: var(--dt-cell-bg);
    color: #000000;
    color: var(--dt-text-color);
    background-clip: padding-box;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
  }