From deab4a378a1ca35b53e4e09ece1dde51981a4894 Mon Sep 17 00:00:00 2001 From: Vladimir Gordiychuk Date: Wed, 3 May 2017 09:22:30 +0300 Subject: [PATCH] bug: MetricSegment lost information about type (#8278) Fixed #8277 --- public/app/core/services/segment_srv.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/core/services/segment_srv.js b/public/app/core/services/segment_srv.js index 096697052ce..f1733fcb3e6 100644 --- a/public/app/core/services/segment_srv.js +++ b/public/app/core/services/segment_srv.js @@ -13,6 +13,7 @@ function (angular, _, coreModule) { if (options === '*' || options.value === '*') { this.value = '*'; this.html = $sce.trustAsHtml(''); + this.type = options.type; this.expandable = true; return; }