mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Explore: fix logs panel top action switches labeling (#41350)
* Explore: fix logs panel top action switches labeling * fix typo Co-authored-by: Maria Alexandra <239999+axelavargas@users.noreply.github.com> Co-authored-by: Maria Alexandra <239999+axelavargas@users.noreply.github.com>
This commit is contained in:
parent
cd5277befd
commit
2139a3dfa8
@ -321,16 +321,21 @@ class UnthemedLogs extends PureComponent<Props, State> {
|
||||
<div className={styles.logOptions} ref={this.topLogsRef}>
|
||||
<InlineFieldRow>
|
||||
<InlineField label="Time" transparent>
|
||||
<InlineSwitch value={showTime} onChange={this.onChangeTime} transparent />
|
||||
<InlineSwitch value={showTime} onChange={this.onChangeTime} transparent id="show-time" />
|
||||
</InlineField>
|
||||
<InlineField label="Unique labels" transparent>
|
||||
<InlineSwitch value={showLabels} onChange={this.onChangeLabels} transparent />
|
||||
<InlineSwitch value={showLabels} onChange={this.onChangeLabels} transparent id="unique-labels" />
|
||||
</InlineField>
|
||||
<InlineField label="Wrap lines" transparent>
|
||||
<InlineSwitch value={wrapLogMessage} onChange={this.onChangewrapLogMessage} transparent />
|
||||
<InlineSwitch value={wrapLogMessage} onChange={this.onChangewrapLogMessage} transparent id="wrap-lines" />
|
||||
</InlineField>
|
||||
<InlineField label="Prettify JSON" transparent>
|
||||
<InlineSwitch value={prettifyLogMessage} onChange={this.onChangePrettifyLogMessage} transparent />
|
||||
<InlineSwitch
|
||||
value={prettifyLogMessage}
|
||||
onChange={this.onChangePrettifyLogMessage}
|
||||
transparent
|
||||
id="prettify"
|
||||
/>
|
||||
</InlineField>
|
||||
<InlineField label="Dedup" transparent>
|
||||
<RadioButtonGroup
|
||||
|
Loading…
Reference in New Issue
Block a user