(props: ValueProps)
| 567 | }); |
| 568 | |
| 569 | const ValueActions = (props: ValueProps) => |
| 570 | ConfirmableActions({ |
| 571 | actions: [ |
| 572 | ['clone', 'Clone value', CloneValue], |
| 573 | ['delete', 'Delete value', DeleteValue], |
| 574 | ], |
| 575 | store: props.store, |
| 576 | valueId: props.valueId, |
| 577 | }); |
| 578 | |
| 579 | const valueActions = [{label: '', component: ValueActions}]; |
| 580 | const rowActions = [{label: '', component: RowActions}]; |
nothing calls this directly
no test coverage detected
searching dependent graphs…