(componentDefinition: any)
| 63 | } |
| 64 | |
| 65 | export function checkRenderTypeProp(componentDefinition: any) { |
| 66 | return ( |
| 67 | 'dashRenderType' in |
| 68 | pathOr( |
| 69 | {}, |
| 70 | [componentDefinition?.namespace, componentDefinition?.type], |
| 71 | window as any |
| 72 | ) |
| 73 | ); |
| 74 | } |
| 75 | |
| 76 | export function checkDashChildrenUpdate(componentDefinition: any) { |
| 77 | return ( |
no outgoing calls
no test coverage detected
searching dependent graphs…