(record.group)
| 445 | render: (text, record, index) => { |
| 446 | if (record.type === 0 || record.type === 2 || record.type === 5) { |
| 447 | if (record.group) { |
| 448 | return <>{renderGroup(record.group)}</>; |
| 449 | } else { |
| 450 | let other = null; |
| 451 | try { |
| 452 | other = JSON.parse(record.other); |
no test coverage detected