File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -150,6 +150,7 @@ module.exports = function plot(gd, wrappedTraceHolders) {
150
150
return d . dragHandle ? 'ew-resize' : 'auto' ;
151
151
} ) ;
152
152
153
+ var headerColumnBlock = columnBlock . filter ( headerBlock ) ;
153
154
var cellsColumnBlock = columnBlock . filter ( cellsBlock ) ;
154
155
155
156
cellsColumnBlock
@@ -166,8 +167,8 @@ module.exports = function plot(gd, wrappedTraceHolders) {
166
167
167
168
// initial rendering: header is rendered first, as it may may have async LaTeX (show header first)
168
169
// but blocks are _entered_ the way they are due to painter's algo (header on top)
169
- renderColumnCellTree ( gd , tableControlView , columnBlock . filter ( headerBlock ) , columnBlock ) ;
170
- renderColumnCellTree ( gd , tableControlView , columnBlock . filter ( cellsBlock ) , columnBlock ) ;
170
+ renderColumnCellTree ( gd , tableControlView , headerColumnBlock , columnBlock ) ;
171
+ renderColumnCellTree ( gd , tableControlView , cellsColumnBlock , columnBlock ) ;
171
172
172
173
var scrollAreaClip = tableControlView . selectAll ( '.scrollAreaClip' )
173
174
. data ( gup . repeat , gup . keyFun ) ;
You can’t perform that action at this time.
0 commit comments