fix: fixed issue with metric segment introduced in graphite tags query editor PR

pull/9958/head
Torkel Ödegaard 8 years ago
parent 5dd9582520
commit 43a6a65f8b
  1. 5
      public/app/core/directives/metric_segment.js

@ -48,7 +48,10 @@ function (_, $, coreModule) {
segment.html = selected.html || selected.value;
segment.fake = false;
segment.expandable = selected.expandable;
segment.type = selected.type;
if (selected.type) {
segment.type = selected.type;
}
}
else if (segment.custom !== 'false') {
segment.value = value;

Loading…
Cancel
Save