From 9d8c079d3706bf2a7db0bf48a4310b4b2c84d1a5 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 6 Oct 2025 20:03:38 +0200 Subject: [PATCH] restore: send siteId --- dashboard/src/views/RestoreView.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dashboard/src/views/RestoreView.vue b/dashboard/src/views/RestoreView.vue index b57699364..77cb1f375 100644 --- a/dashboard/src/views/RestoreView.vue +++ b/dashboard/src/views/RestoreView.vue @@ -39,6 +39,7 @@ const ipv6Provider = ref('generic'); const ipv6Address = ref(''); const ipv6Interface = ref(''); const skipDnsSetup = ref(false); +const siteId = ref(''); const form = useTemplateRef('form'); const isFormValid = ref(false); @@ -124,6 +125,7 @@ async function onSubmit() { ifname: ipv6Interface.value, }, skipDnsSetup: skipDnsSetup.value, + siteId: siteId.value }; if (encrypted.value) { @@ -274,6 +276,7 @@ function onBackupConfigChanged(event) { encryptionPasswordHint.value = data.encryptionPasswordHint || ''; encryptionPassword.value = ''; encryptedFilenames.value = data.encryptedFilenames; + siteId.value = data.siteId || ''; }; reader.readAsText(event.target.files[0]);