Commit a5d8e3f0 authored by GoshaZotov's avatar GoshaZotov

fix bug 32456 - Вызов окна Filer не осуществляется и вызывает ошибку в консоли...

fix bug 32456 - Вызов окна Filer не осуществляется и вызывает ошибку в консоли при работе с XLSX книгой
parent 799fbe46
...@@ -13010,10 +13010,13 @@ ...@@ -13010,10 +13010,13 @@
var cell = ws._getCellNoEmpty(i, columnRange.c1); var cell = ws._getCellNoEmpty(i, columnRange.c1);
//добавляем без цвета ячейку //добавляем без цвета ячейку
if(!cell && true !== alreadyAddColors[null]) if(!cell)
{
if(true !== alreadyAddColors[null])
{ {
alreadyAddColors[null] = true; alreadyAddColors[null] = true;
res.colors.push(null); res.colors.push(null);
}
continue; continue;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment