()
| 274 | } |
| 275 | |
| 276 | function getActionableState() { |
| 277 | const state = getDefaultState(); |
| 278 | state.tableProps.filter_action = TableAction.Native; |
| 279 | |
| 280 | (state.tableProps.columns || []).forEach(c => { |
| 281 | c.clearable = true; |
| 282 | c.hideable = 'last'; |
| 283 | c.selectable = true; |
| 284 | }); |
| 285 | |
| 286 | return state; |
| 287 | } |
| 288 | |
| 289 | function getDateState() { |
| 290 | const state = getTypedState(); |
no test coverage detected
searching dependent graphs…