mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Logs: Rename dedup to deduplication (#62944)
* fix: rename dedup with deduplication * docs: update documentation * fix: update names
This commit is contained in:
@@ -438,7 +438,7 @@ class UnthemedLogs extends PureComponent<Props, State> {
|
||||
id={`prettify_${exploreId}`}
|
||||
/>
|
||||
</InlineField>
|
||||
<InlineField label="Dedup" className={styles.horizontalInlineLabel} transparent>
|
||||
<InlineField label="Deduplication" className={styles.horizontalInlineLabel} transparent>
|
||||
<RadioButtonGroup
|
||||
options={Object.values(LogsDedupStrategy).map((dedupType) => ({
|
||||
label: capitalize(dedupType),
|
||||
|
@@ -80,7 +80,7 @@ export const LogsMetaRow = React.memo(
|
||||
// Add deduplication info
|
||||
if (dedupStrategy !== LogsDedupStrategy.none) {
|
||||
logsMetaItem.push({
|
||||
label: 'Dedup count',
|
||||
label: 'Deduplication count',
|
||||
value: dedupCount,
|
||||
kind: LogsMetaKind.Number,
|
||||
});
|
||||
|
Reference in New Issue
Block a user