File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -637,7 +637,6 @@ export default class BrowserCell extends Component {
637
637
style . position = 'sticky' ;
638
638
style . left = this . props . stickyLeft ;
639
639
style . zIndex = 1 ;
640
- style . background = this . props . rowBackground ;
641
640
style . borderBottom = '1px solid #e3e3ea' ;
642
641
}
643
642
Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ export default class BrowserRow extends Component {
71
71
} else if ( obj . className === '_User' && obj . get ( 'authData' ) !== undefined ) {
72
72
requiredCols = [ 'authData' ] ;
73
73
}
74
- const rowBackground = row % 2 ? '#F4F5F7' : '#FFFFFF' ;
75
74
const rowStyle = { minWidth : rowWidth } ;
76
75
return (
77
76
< div className = { styles . tableRow } style = { rowStyle } onMouseOver = { ( ) => onMouseOverRow ( obj . id ) } >
@@ -85,7 +84,6 @@ export default class BrowserRow extends Component {
85
84
position : 'sticky' ,
86
85
left : 0 ,
87
86
zIndex : 1 ,
88
- background : rowBackground ,
89
87
borderBottom : '1px solid #e3e3ea' ,
90
88
}
91
89
: { }
@@ -149,7 +147,6 @@ export default class BrowserRow extends Component {
149
147
readonly = { isUnique || readOnlyFields . indexOf ( name ) > - 1 }
150
148
width = { width }
151
149
stickyLeft = { freezeIndex >= j ? stickyLefts [ j ] : undefined }
152
- rowBackground = { rowBackground }
153
150
current = { currentCol === j }
154
151
onSelect = { setCurrent }
155
152
onEditChange = { setEditing }
You can’t perform that action at this time.
0 commit comments