feat(web): ws - on_config_update (#4378)

This commit is contained in:
shenlong 2023-10-07 10:21:05 +00:00 committed by GitHub
parent c48d4f01dc
commit 104880a729
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 8 deletions

View file

@ -12,7 +12,6 @@
import SettingInputField, { SettingInputFieldType } from '../setting-input-field.svelte';
import SettingSwitch from '../setting-switch.svelte';
import SettingSelect from '../setting-select.svelte';
import { loadConfig } from '$lib/stores/server-config.store';
export let config: SystemConfigDto; // this is the config that is being edited
export let disabled = false;
@ -48,9 +47,6 @@
savedConfig = cloneDeep(updated);
notificationController.show({ message: 'Settings saved', type: NotificationType.Info });
// TODO: Use websockets to reload feature params instead once websocket for client is merged
// Reload feature params in the background
loadConfig();
} catch (error) {
handleError(error, 'Unable to save settings');
}