Fix URI encoding on the csrf token
This commit is contained in:
parent
be6701b310
commit
a98b9ca1a7
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ function SuperUserAdminCtrl($scope, $timeout, ApiService, Features, UserService,
|
|||
$scope.debugLogs = null;
|
||||
$scope.pollChannel = null;
|
||||
$scope.logsScrolled = false;
|
||||
$scope.csrf_token = window.__token;
|
||||
$scope.csrf_token = encodeURIComponent(window.__token);
|
||||
|
||||
$scope.configurationSaved = function() {
|
||||
$scope.requiresRestart = true;
|
||||
|
|
Reference in a new issue