mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
mod transform function to ignore null row index
This commit is contained in:
parent
ab51b7ea10
commit
1e2e5cdb25
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ function onOpen() {
|
|||
function refreshJson() {
|
||||
var ss = SpreadsheetApp.getActiveSpreadsheet();
|
||||
var sheet = ss.getSheetByName(typeSheet[ss.getName()]);
|
||||
var data = ImportJSON(typeGitHubUrl[ss.getName()], "", "noTruncate,rawHeaders");
|
||||
var data = ImportJSON(typeGitHubUrl[ss.getName()], "", "noTruncate,rawHeaders,noInherit");
|
||||
for (i = 0; i < data.length; i++) {
|
||||
for (j = 0; j < data[0].length; j++) {
|
||||
if (data[i][j] == null) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue