Commit deab4a37 by Vladimir Gordiychuk Committed by Torkel Ödegaard

bug: MetricSegment lost information about type (#8278)

Fixed #8277
parent 44f76fda
...@@ -13,6 +13,7 @@ function (angular, _, coreModule) { ...@@ -13,6 +13,7 @@ function (angular, _, coreModule) {
if (options === '*' || options.value === '*') { if (options === '*' || options.value === '*') {
this.value = '*'; this.value = '*';
this.html = $sce.trustAsHtml('<i class="fa fa-asterisk"><i>'); this.html = $sce.trustAsHtml('<i class="fa fa-asterisk"><i>');
this.type = options.type;
this.expandable = true; this.expandable = true;
return; return;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment