Browse Source

Fix refreshCellValue asserting on scripts columns

Clément Espeute 11 tháng trước cách đây
mục cha
commit
961aa0d388
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      hide/comp/cdb/SubTable.hx

+ 1 - 1
hide/comp/cdb/SubTable.hx

@@ -79,7 +79,7 @@ class SubTable extends Table {
 					value = sheet.lines[0];
 					doSet = value != null && Reflect.fields(value).length > 0;
 				default:
-					throw "assert";
+					return;
 			}
 			if (doSet) {
 				Reflect.setField(cell.line.obj, cell.column.name, value);