File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed 
x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import {
1616  EuiTitle , 
1717}  from  '@elastic/eui' ; 
1818import  {  i18n  }  from  '@kbn/i18n' ; 
19- import  {  FrameSymbolStatus ,  getFrameSymbolStatus  }  from  '@kbn/profiling-utils' ; 
19+ import  {  FrameSymbolStatus ,  FrameType ,   getFrameSymbolStatus  }  from  '@kbn/profiling-utils' ; 
2020import  {  isEmpty  }  from  'lodash' ; 
2121import  React ,  {  useState  }  from  'react' ; 
2222import  {  useCalculateImpactEstimate  }  from  '../../hooks/use_calculate_impact_estimates' ; 
@@ -159,7 +159,9 @@ export function FrameInformationWindow({
159159          </ EuiFlexGroup > 
160160        </ EuiFlexItem > 
161161        < FrameInformationAIAssistant  frame = { frame }  /> 
162-         { showSymbolsStatus  &&  symbolStatus  !==  FrameSymbolStatus . SYMBOLIZED  ? ( 
162+         { showSymbolsStatus  && 
163+         symbolStatus  !==  FrameSymbolStatus . SYMBOLIZED  && 
164+         frame . frameType  <  FrameType . Root  ? ( 
163165          < EuiFlexItem > 
164166            < MissingSymbolsCallout  frameType = { frame . frameType }  /> 
165167          </ EuiFlexItem > 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments