localizable-sheet-script icon indicating copy to clipboard operation
localizable-sheet-script copied to clipboard

Tiny bug for HEADER_ROW_POSITION

Open ios4vn opened this issue 5 years ago • 1 comments

I found a problem when I changed HEADER_ROW_POSITION

The reason may be at line 278 var headersRange = sheet.getRange(1, FIRST_COLUMN_POSITION, HEADER_ROW_POSITION, sheet.getMaxColumns()); It should be var headersRange = sheet.getRange(HEADER_ROW_POSITION, FIRST_COLUMN_POSITION,1, sheet.getMaxColumns()); Please confirm then fix it if I correct

ios4vn avatar Aug 12 '19 11:08 ios4vn

Confirm this, problem in the function getNormalizedHeaders(sheet, options). function getRowsData_(sheet, options) uses the correct argument order already

bivant avatar Oct 02 '19 10:10 bivant