Skip to content

Commit c6e1694

Browse files
committed
Remove background color from last frozen drag handle
1 parent 6c5fa1f commit c6e1694

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/DataBrowserHeaderBar/DataBrowserHeaderBar.react.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,11 @@ export default class DataBrowserHeaderBar extends React.Component {
110110
handleStyle.position = 'sticky';
111111
handleStyle.left = handleLefts[i];
112112
handleStyle.zIndex = 11;
113-
handleStyle.background = wrapStyle.background;
114113
if (i === freezeIndex) {
115114
handleStyle.marginRight = 0;
116115
handleStyle.width = 4;
116+
} else {
117+
handleStyle.background = wrapStyle.background;
117118
}
118119
}
119120
elements.push(

0 commit comments

Comments
 (0)