Skip to content

Commit

Permalink
fix(Table): can not show shadow when fixed columns on MacOS, close #201
Browse files Browse the repository at this point in the history
  • Loading branch information
Javey committed Jan 21, 2019
1 parent 4e5d6de commit b2bb478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/table/index.vdt
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ const classNameObj = {
[className]: className,
[`k-${type}`]: type !== 'default',
'k-sticky': _isSticky,
[`k-scroll-${_scrollPosition}`]: _paddingBottom,
[`k-scroll-${_scrollPosition}`]: hasFixedLeft || hasFixedRight,
'k-sticky-scrollbar': _isStickyScrollbar,
};

Expand Down

0 comments on commit b2bb478

Please sign in to comment.