Merge pull request #3760 from nielsvanvelzen/fix-logs-submit

Fix saving log settings not working
This commit is contained in:
Bill Thornton 2022-07-11 14:28:24 -04:00 committed by GitHub
commit db346e4c05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,8 @@ import alert from '../../components/alert';
/* eslint-disable indent */
function onSubmit() {
function onSubmit(event) {
event.preventDefault();
loading.show();
const form = this;
ApiClient.getServerConfiguration().then(function (config) {