Closed samuelpietra closed 4 years ago
The actions attribute of a Table expects a function or an array of objects, however if a function like below is passed:
actions
Table
function handleActions(shouldRender) { if (!shouldRender) { return []; } return [ actions ] }
A actions column is being rendered with empty content
Fixed on v0.22.5.
The
actions
attribute of aTable
expects a function or an array of objects, however if a function like below is passed:A
actions
column is being rendered with empty content