Skip to content

Commit

Permalink
reorder rows
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres-CT98 committed May 24, 2024
1 parent 8196344 commit 2d7d896
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -263,12 +263,12 @@ export function setFirstColumnFormatBorders(
case 0:
cell.isHeader = !!format.hasHeaderRow;
break;
case 1:
setBorderColor(cell.format, 'borderBottom');
break;
case rows.length - 1:
setBorderColor(cell.format, 'borderTop');
break;
case 1:
setBorderColor(cell.format, 'borderBottom');
break;
default:
setBorderColor(cell.format, 'borderTop');
setBorderColor(cell.format, 'borderBottom');
Expand Down

0 comments on commit 2d7d896

Please sign in to comment.