diff --git a/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/index.tsx b/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/index.tsx index 8714441fd89fc..35c533c92d83e 100644 --- a/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/index.tsx +++ b/x-pack/solutions/observability/plugins/profiling/public/components/frame_information_window/index.tsx @@ -16,7 +16,7 @@ import { EuiTitle, } from '@elastic/eui'; import { i18n } from '@kbn/i18n'; -import { FrameSymbolStatus, getFrameSymbolStatus } from '@kbn/profiling-utils'; +import { FrameSymbolStatus, FrameType, getFrameSymbolStatus } from '@kbn/profiling-utils'; import { isEmpty } from 'lodash'; import React, { useState } from 'react'; import { useCalculateImpactEstimate } from '../../hooks/use_calculate_impact_estimates'; @@ -159,7 +159,9 @@ export function FrameInformationWindow({ - {showSymbolsStatus && symbolStatus !== FrameSymbolStatus.SYMBOLIZED ? ( + {showSymbolsStatus && + symbolStatus !== FrameSymbolStatus.SYMBOLIZED && + frame.frameType < FrameType.Root ? (