- No longer unexpected parallel replication is performed.
- Now we can set the device name and enable customised synchronisation again.
This commit is contained in:
vorotamoroz
2024-05-27 12:04:19 +01:00
parent 3a4b59b998
commit 0bf087dba0
4 changed files with 14 additions and 3 deletions
+2
View File
@@ -6,6 +6,7 @@ export type OnDialogSettings = {
preset: "" | "PERIODIC" | "LIVESYNC" | "DISABLE",
syncMode: "ONEVENTS" | "PERIODIC" | "LIVESYNC"
dummy: number,
deviceAndVaultName: string,
}
export const OnDialogSettingsDefault: OnDialogSettings = {
@@ -13,6 +14,7 @@ export const OnDialogSettingsDefault: OnDialogSettings = {
preset: "",
syncMode: "ONEVENTS",
dummy: 0,
deviceAndVaultName: "",
}
export const AllSettingDefault =
{ ...DEFAULT_SETTINGS, ...OnDialogSettingsDefault }