fixed variable declaration

pull/2864/head
ABerberovic 2021-05-27 11:19:02 +02:00 committed by Eicke Hauck
parent 61b523938c
commit ba90b89c0b
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -3,7 +3,7 @@ $(document).ready(function () {
$("#apiResetForm").submit(function (e) { $("#apiResetForm").submit(function (e) {
api.reset() api.reset()
.success(function (response) { .success(function (response) {
api_key = response.data //API-Key is still associated with a user in the backend var api_key = response.data //API-Key is still associated with a user in the backend
successFlash(response.message) successFlash(response.message)
$("#api_key").val(api_key) $("#api_key").val(api_key)
}) })