File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 899899 for ( let i = 0 ; i < parents . length ; ++ i ) {
900900 lines += `<span class="tree-vline" style="visibility:${ parents [ i ] ? 'visible' : 'hidden' } "></span>` ;
901901 }
902- // For the current node, add a connector (├ or └)
903902 if ( parents . length > 0 ) {
904- lines += `<span class="tree-vline tree- branch" style="height:22px; ${ isLast ? 'border-left:2px solid transparent; ' : '' } "></span>` ;
903+ lines += `<span class="tree-branch${ isLast ? ' tree-branch-last ' : '' } "></span>` ;
905904 }
906905 return lines ;
907906 }
Original file line number Diff line number Diff line change 7373 top : 2px ;
7474 left : -2px ;
7575}
76+ .tree-branch-last {
77+ border-left : 2px solid transparent !important ;
78+ }
7679.tree-arrow {
7780 width : 14px ;
7881 height : 14px ;
You can’t perform that action at this time.
0 commit comments