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) {
150150 return d . dragHandle ? 'ew-resize' : 'auto' ;
151151 } ) ;
152152
153+ var headerColumnBlock = columnBlock . filter ( headerBlock ) ;
153154 var cellsColumnBlock = columnBlock . filter ( cellsBlock ) ;
154155
155156 cellsColumnBlock
@@ -166,8 +167,8 @@ module.exports = function plot(gd, wrappedTraceHolders) {
166167
167168 // initial rendering: header is rendered first, as it may may have async LaTeX (show header first)
168169 // 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 ) ;
171172
172173 var scrollAreaClip = tableControlView . selectAll ( '.scrollAreaClip' )
173174 . data ( gup . repeat , gup . keyFun ) ;
You can’t perform that action at this time.
0 commit comments