There was an error while loading. Please reload this page.
1 parent 50a619f commit dcb0562Copy full SHA for dcb0562
1 file changed
src/components/c-table/index.js
@@ -300,7 +300,6 @@ class CTable extends Component {
300
if (isFirefox() || !this.hasCustomScroll) {
301
return;
302
}
303
- console.log(1);
304
const fixedColumn = this.state.columnData
305
.filter((item) => item.fixed === 'right')
306
.reverse();
@@ -321,7 +320,6 @@ class CTable extends Component {
321
320
// } else {
322
// Object.assign(ele.style, { right: 0 });
323
// }
324
- console.log(this.hasScroll());
325
Object.assign(ele.style, { right: this.hasScroll() ? getScrollbarWidth() : 0 });
326
} else {
327
const right = fixedColumn.slice(0, index).reduce(
0 commit comments