mirror of
https://github.com/grafana/grafana.git
synced 2026-08-19 01:34:54 -05:00
Explore: Enable click on name label
- click on the name label in a prometheus table was disabled - it was disabled because every query used to have a metric which is no longer true - this change enables it
This commit is contained in:
@@ -100,7 +100,7 @@ export class ResultTransformer {
|
||||
table.columns.push({ text: 'Time', type: 'time' });
|
||||
_.each(sortedLabels, (label, labelIndex) => {
|
||||
metricLabels[label] = labelIndex + 1;
|
||||
table.columns.push({ text: label, filterable: !label.startsWith('__') });
|
||||
table.columns.push({ text: label, filterable: true });
|
||||
});
|
||||
const valueText = resultCount > 1 || valueWithRefId ? `Value #${refId}` : 'Value';
|
||||
table.columns.push({ text: valueText });
|
||||
|
||||
Reference in New Issue
Block a user