Full document, spreadsheet, slideshow, and diagram tooling
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request 'fix(sheets): column hide only hides the targeted column' (#162) from fix/column-hide-adjacent into main

scott 2441931b 18c147ed

+3 -6
+3 -6
src/sheets/main.ts
··· 423 423 let headHtml = '<colgroup>'; 424 424 headHtml += '<col style="width:' + ROW_HEADER_WIDTH + 'px;min-width:' + ROW_HEADER_WIDTH + 'px">'; 425 425 for (let c = 1; c <= colCount; c++) { 426 - if (!visibleColSet.has(c)) { 427 - headHtml += '<col style="width:0;min-width:0;max-width:0;overflow:hidden;visibility:collapse">'; 428 - } else { 429 - const w = getColWidth(c); 430 - headHtml += '<col style="width:' + w + 'px;min-width:' + MIN_COL_WIDTH + 'px">'; 431 - } 426 + if (!visibleColSet.has(c)) continue; 427 + const w = getColWidth(c); 428 + headHtml += '<col style="width:' + w + 'px;min-width:' + MIN_COL_WIDTH + 'px">'; 432 429 } 433 430 headHtml += '</colgroup>'; 434 431