fix: row width fix to remove unnecessary scroll bar
This commit is contained in:
parent
cca14e09eb
commit
fb465579a0
@ -312,7 +312,7 @@ export default class Style {
|
||||
if (!firstRow) return;
|
||||
const rowWidth = $.style(firstRow, 'width');
|
||||
|
||||
let width = bodyWidth > rowWidth ? rowWidth : bodyWidth;
|
||||
let width = bodyWidth > rowWidth ? rowWidth + 10 : bodyWidth;
|
||||
$.style(this.bodyScrollable, {
|
||||
width: width + 'px'
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user