(props: CellProps)
| 580 | const rowActions = [{label: '', component: RowActions}]; |
| 581 | |
| 582 | const EditableCellViewWithActions = (props: CellProps) => ( |
| 583 | <> |
| 584 | <EditableCellView {...props} /> |
| 585 | {useHasCell(props.tableId, props.rowId, props.cellId, props.store)() ? ( |
| 586 | <CellActions {...props} /> |
| 587 | ) : ( |
| 588 | EMPTY_STRING |
| 589 | )} |
| 590 | </> |
| 591 | ); |
| 592 | |
| 593 | const ValuesView = ( |
| 594 | props: ValuesProps & {readonly storeId?: Id} & StoreProp, |
nothing calls this directly
no test coverage detected
searching dependent graphs…