fix(mod/dashboard): use deleteKey() not delete_key()

small bug I overlooked while refactoring all of the dashboard function
names to be more "javascripty"
This commit is contained in:
Brandon Philips
2013-10-10 12:19:01 -07:00
parent 55356465c6
commit 26806a10fc
2 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ angular.module('etcdBrowser', ['ngRoute', 'etcd', 'timeRelative'])
}).error(function (data, status, headers, config) {
//TODO: remove loader
//show errors
$scope.showBrowseError('Error: Could not delete the key');
$scope.showBrowseError('Could not delete the key');
});
};