Skip to content

Commit

Permalink
Code style correction
Browse files Browse the repository at this point in the history
  • Loading branch information
thuck committed Aug 9, 2015
1 parent 42caf02 commit 950d4bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/app/plugins/datasource/influxdb/queryCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function (angular, _, InfluxQueryBuilder) {
MetricSegment.newOperator('<'), MetricSegment.newOperator('>')]);

} else if (segment.type === 'operator' && /^\/.*\/$/.test($scope.tagSegments[index+1].value)) {
return $q.when([ MetricSegment.newOperator('=~'), MetricSegment.newOperator('!~')]);
return $q.when([MetricSegment.newOperator('=~'), MetricSegment.newOperator('!~')]);
}
else {
return $q.when([]);
Expand Down

0 comments on commit 950d4bb

Please sign in to comment.