Logs panel: Table UI - remove beta badge (#82395)

* remove beta badge
pull/82399/head
Galen Kistler 1 year ago committed by GitHub
parent 3d86d101b7
commit ff5b0f7bd8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 24
      public/app/features/explore/Logs/Logs.tsx

@ -13,7 +13,6 @@ import {
EventBus,
ExploreLogsPanelState,
ExplorePanelsState,
FeatureState,
Field,
GrafanaTheme2,
LinkModel,
@ -36,7 +35,6 @@ import { config, reportInteraction } from '@grafana/runtime';
import { DataQuery, TimeZone } from '@grafana/schema';
import {
Button,
FeatureBadge,
InlineField,
InlineFieldRow,
InlineSwitch,
@ -654,21 +652,13 @@ class UnthemedLogs extends PureComponent<Props, State> {
</PanelChrome>
<PanelChrome
titleItems={[
config.featureToggles.logsExploreTableVisualisation
? this.state.visualisationType === 'logs'
? null
: [
<PanelChrome.TitleItem title="Experimental" key="A">
<FeatureBadge
featureState={FeatureState.beta}
tooltip="Table view is experimental and may change in future versions"
/>
</PanelChrome.TitleItem>,
<PanelChrome.TitleItem title="Feedback" key="B">
<LogsFeedback feedbackUrl="https://forms.gle/5YyKdRQJ5hzq4c289" />
</PanelChrome.TitleItem>,
]
: null,
config.featureToggles.logsExploreTableVisualisation ? (
this.state.visualisationType === 'logs' ? null : (
<PanelChrome.TitleItem title="Feedback" key="A">
<LogsFeedback feedbackUrl="https://forms.gle/5YyKdRQJ5hzq4c289" />
</PanelChrome.TitleItem>
)
) : null,
]}
title={'Logs'}
actions={

Loading…
Cancel
Save