Backport pull request #3760 from jellyfin/release-10.8.z

Fix saving log settings not working

Authored-by: Niels van Velzen <git@ndat.nl>

Merged-by: Bill Thornton <thornbill@users.noreply.github.com>

Original-merge: db346e4c059936e29af9ee593836f597a865ff38
This commit is contained in:
Joshua Boniface 2022-07-20 19:29:51 -04:00
parent d310ac64b4
commit 3222fb93e4

View file

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