We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d0a8b0 commit 4291dffCopy full SHA for 4291dff
src/dashboard/Data/Browser/BrowserTable.react.js
@@ -121,13 +121,16 @@ export default class BrowserTable extends React.Component {
121
122
let stickyLefts = [];
123
let handleLefts = [];
124
- if (typeof this.props.freezeIndex === 'number' && this.props.freezeIndex >= 0) {
+ if (
125
+ typeof this.props.freezeIndex === 'number' &&
126
+ this.props.freezeIndex >= 0
127
+ ) {
128
let left = 30;
129
headers.forEach((h, i) => {
130
stickyLefts[i] = left;
131
handleLefts[i] = left + h.width;
132
if (h.visible) {
- left += h.width + 8;
133
+ left += h.width;
134
}
135
});
136
0 commit comments