Commit 53075e0e by Torkel Ödegaard

Fixes #104, improvements to graphite target editor and use of wildcard, the…

Fixes #104, improvements to graphite target editor and use of wildcard, the "select metric" should now behave/appear correctly
parent 64c7c9f7
...@@ -168,11 +168,12 @@ function (angular, _, config, gfunc, Parser) { ...@@ -168,11 +168,12 @@ function (angular, _, config, gfunc, Parser) {
segments.unshift({ segments.unshift({
type: 'template', type: 'template',
html: '[[' + filter.name + ']]', html: '[[' + filter.name + ']]',
val: '[[' + filter.name + ']]' val: '[[' + filter.name + ']]',
expandable: true,
}); });
}); });
segments.unshift({val: '*', html: '<i class="icon-asterisk"></i>' }); segments.unshift({val: '*', html: '<i class="icon-asterisk"></i>', expandable: true });
$scope.altSegments = segments; $scope.altSegments = segments;
}) })
.then(null, function(err) { .then(null, function(err) {
...@@ -193,6 +194,9 @@ function (angular, _, config, gfunc, Parser) { ...@@ -193,6 +194,9 @@ function (angular, _, config, gfunc, Parser) {
$scope.targetChanged(); $scope.targetChanged();
}); });
} }
else {
$scope.segments = $scope.segments.splice(0, segmentIndex + 1);
}
setSegmentFocus(segmentIndex + 1); setSegmentFocus(segmentIndex + 1);
$scope.targetChanged(); $scope.targetChanged();
......
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