Merge pull request #13388 from jsferrei/fix-metric-segment-typeahead

Fix metric-segment options displaying after blur
pull/13392/head
Torkel Ödegaard 7 years ago committed by GitHub
commit 3fd3dbba8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      public/app/core/directives/metric_segment.ts

@ -118,6 +118,9 @@ export function metricSegment($compile, $sce) {
};
$scope.matcher = function(item) {
if (linkMode) {
return false;
}
let str = this.query;
if (str[0] === '/') {
str = str.substring(1);

Loading…
Cancel
Save