mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix: semi-spacing
``` /Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/search/result-list.controller.js (1/0) ✖ 20:26 Unexpected whitespace before semicolon semi-spacing ```
This commit is contained in:
parent
3abfc7c3f3
commit
a5c7842d4f
2 changed files with 1 additions and 2 deletions
|
|
@ -31,7 +31,6 @@
|
|||
"process": false
|
||||
},
|
||||
"rules": {
|
||||
"semi-spacing": 0,
|
||||
"no-tabs": 0,
|
||||
"no-extra-boolean-cast": 0,
|
||||
"object-property-newline": 0,
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ angular.module('zeppelinWebApp').controller('SearchResultCtrl', SearchResultCtrl
|
|||
function SearchResultCtrl($scope, $routeParams, searchService) {
|
||||
'ngInject';
|
||||
|
||||
$scope.isResult = true ;
|
||||
$scope.isResult = true;
|
||||
$scope.searchTerm = $routeParams.searchTerm;
|
||||
var results = searchService.search({'q': $routeParams.searchTerm}).query();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue