Skip to content

Commit 76d93f3

Browse files
authored
revert deletions
1 parent 37ea672 commit 76d93f3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

types/tabulator-tables/tabulator-tables-tests.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,9 @@ colDef.cellClick = (_e: UIEvent, cell) => {
247247
console.log(cell.checkHeight);
248248
};
249249

250-
colDef. = { stars: 3 };
250+
colDef.formatterParams = { stars: 3 };
251251

252-
colDef. = { url: cell => `${cell.getValue()}` };
252+
colDef.formatterParams = { url: cell => `${cell.getValue()}` };
253253

254254
colDef.editorParams = {};
255255
colDef.editorParams = {
@@ -410,7 +410,7 @@ colDef.bottomCalcParams = (values, data) => {
410410

411411
colDef.bottomCalcParams = { precision: 2 };
412412

413-
colDef.bottomCalcFormatter = (cell, , onRendered) => {
413+
colDef.bottomCalcFormatter = (cell, formatterParams, onRendered) => {
414414
return "";
415415
};
416416

@@ -424,7 +424,7 @@ colDef.topCalcParams = (values, data) => {
424424

425425
colDef.topCalcParams = { precision: 2 };
426426

427-
colDef.topCalcFormatter = (cell, , onRendered) => {
427+
colDef.topCalcFormatter = (cell, formatterParams, onRendered) => {
428428
return "";
429429
};
430430

0 commit comments

Comments
 (0)