(
fixed: Fixed,
columns: IColumn[],
filter_action: TableAction
)
| 57 | data2number(fixed.data); |
| 58 | |
| 59 | const getFixedRows = ( |
| 60 | fixed: Fixed, |
| 61 | columns: IColumn[], |
| 62 | filter_action: TableAction |
| 63 | ) => |
| 64 | !fixed.headers |
| 65 | ? 0 |
| 66 | : headerRows(columns) + |
| 67 | (filter_action !== TableAction.None ? 1 : 0) + |
| 68 | data2number(fixed.data); |
| 69 | |
| 70 | const populateColumnsFromData = (data: Data) => |
| 71 | data.length > 0 |
no test coverage detected
searching dependent graphs…