Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions packages/excel-builder-vanilla/src/Excel/Workbook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export interface MediaMeta {
/**
* @module Excel/Workbook
*/
/* globals console: true */
export class Workbook {
id = uniqueId('Workbook');
styleSheet = new StyleSheet();
Expand Down Expand Up @@ -103,7 +102,7 @@ export class Workbook {
if (this.printTitles[inSheet] == null) {
this.printTitles[inSheet] = {};
}
//WARN: this does not handle AA, AB, etc.
// WARN: this does not handle AA, AB, etc.
this.printTitles[inSheet].left = String.fromCharCode(64 + inRowCount);
}

Expand Down Expand Up @@ -251,7 +250,7 @@ export class Workbook {
}
wb.appendChild(sheets);

//now to add repeating rows
// now to add repeating rows
const definedNames = Util.createElement(doc, 'definedNames');
let ctr = 0;
for (const name in this.printTitles) {
Expand Down