Fix code style and included missed semicolon

This commit is contained in:
Denis Doria
2015-08-08 13:54:01 +02:00
parent 9a9902cea9
commit a51d900da0
2 changed files with 2 additions and 4 deletions

View File

@@ -129,4 +129,3 @@ function (_) {
return InfluxQueryBuilder;
});

View File

@@ -251,7 +251,7 @@ function (angular, _, InfluxQueryBuilder) {
tags[tagIndex].key = segment2.value;
}
else if (segment2.type === 'value') {
tagOperator = $scope.getTagValueOperator(segment2.value, tags[tagIndex].operator)
tagOperator = $scope.getTagValueOperator(segment2.value, tags[tagIndex].operator);
if (tagOperator) {
$scope.tagSegments[index-1] = MetricSegment.newOperator(tagOperator);
tags[tagIndex].operator = tagOperator;
@@ -330,4 +330,3 @@ function (angular, _, InfluxQueryBuilder) {
});
});