(core) Restoring context menu when comparing documents

Summary:
Fixing bug when comparing documents. User wasn't able
to open cell/column context menu due to javascript error.

Test Plan: Updated tests

Reviewers: paulfitz

Reviewed By: paulfitz

Differential Revision: https://phab.getgrist.com/D3397
This commit is contained in:
Jarosław Sadziński 2022-04-26 14:13:16 +02:00
parent 040fa85a8b
commit dcafa96b5b

View File

@ -261,6 +261,10 @@ export class TableDataWithDiff {
return this.core.getValue(rowId, colId);
}
public get tableId() { return this.core.tableId; }
public numRecords() {
return this.core.numRecords();
}
}
/**