From f887ad1125deb1053e33f7ef385d5f518ac27892 Mon Sep 17 00:00:00 2001 From: Ivana Date: Mon, 29 Jun 2020 18:54:28 +0200 Subject: [PATCH] Remove fieldtype as in prometheus --- public/app/plugins/datasource/loki/result_transformer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/loki/result_transformer.ts b/public/app/plugins/datasource/loki/result_transformer.ts index 727cbf1af68..7c3664bbcd7 100644 --- a/public/app/plugins/datasource/loki/result_transformer.ts +++ b/public/app/plugins/datasource/loki/result_transformer.ts @@ -201,7 +201,7 @@ export function lokiResultsToTableModel( table.columns = [ { text: 'Time', type: FieldType.time }, ...sortedLabels.map(label => ({ text: label, filterable: true })), - { text: resultCount > 1 || valueWithRefId ? `Value #${refId}` : 'Value', type: FieldType.number }, + { text: resultCount > 1 || valueWithRefId ? `Value #${refId}` : 'Value' }, ]; // Populate rows, set value to empty string when label not present.