(data: Dict)
| 1647 | js_func_key = random_str(10) |
| 1648 | |
| 1649 | def callback(data: Dict): |
| 1650 | rows = data['rows'] if multiple_select else data['rows'][0] |
| 1651 | |
| 1652 | if "btn" not in data and onselect is not None: |
| 1653 | return onselect(rows) |
| 1654 | |
| 1655 | _, cb = actions[data['btn']] |
| 1656 | return cb(rows) |
| 1657 | |
| 1658 | callback_id = None |
| 1659 | if actions or onselect: |
no outgoing calls
no test coverage detected
searching dependent graphs…