Skip to content

Commit

Permalink
Get rid of errant console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
tyrantkhan committed Mar 22, 2022
1 parent 53aa01f commit cb74121
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -1741,7 +1741,6 @@ angular.module('cerebro').controller('RestController', ['$scope', '$http',

$scope.updateOptions = function(text) {
var indices = getWithExpiry(localStorageKey);
console.log(indices);
if ($scope.indices && indices !== null) {
$scope.options = indices;
} else if ($scope.indices) {
Expand Down
1 change: 0 additions & 1 deletion src/app/components/rest/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ angular.module('cerebro').controller('RestController', ['$scope', '$http',

$scope.updateOptions = function(text) {
var indices = getWithExpiry(localStorageKey);
console.log(indices);
if ($scope.indices && indices !== null) {
$scope.options = indices;
} else if ($scope.indices) {
Expand Down

0 comments on commit cb74121

Please sign in to comment.