Commit 83ef5f30 authored by GoshaZotov's avatar GoshaZotov

fix bug 32730 - [CoEdit] Ошибка Cannot read property 'clone' of null после...

fix bug 32730  -  [CoEdit] Ошибка Cannot read property 'clone' of null после удаления строки форматированной таблицы одним пользователем и смены её шаблона другим
parent d90c49ae
......@@ -13453,7 +13453,7 @@
History.EndTransaction();
};
var changedRange = new asc_Range( arn.c1, arn.r1, arn.c2, gc_nMaxRow0 );
var changedRange = new asc_Range( tablePart.Ref.c1, tablePart.Ref.r1, tablePart.Ref.c2, tablePart.Ref.r2 );
t._isLockedCells( changedRange, null, callback );
};
......@@ -13567,7 +13567,7 @@
History.EndTransaction();
};
var changedRange = new asc_Range( arn.c1, arn.r1, gc_nMaxCol0, arn.r2 );
var changedRange = new asc_Range( tablePart.Ref.c1, tablePart.Ref.r1, tablePart.Ref.c2, tablePart.Ref.r2 );
t._isLockedCells( changedRange, null, callback );
};
......
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