This commit is contained in:
Alireza Ahmadi
2024-06-06 08:24:08 +02:00
parent f136229539
commit c994f4b24a
26 changed files with 1335 additions and 81 deletions
+2 -2
View File
@@ -32,11 +32,11 @@ const saveChanges = () => {
}
const oldData = computed((): any => {
return {config: store.oldData.config, clients: store.oldData.clients}
return {config: store.oldData.config, clients: store.oldData.clients, tls: store.oldData.tlsConfigs}
})
const newData = computed((): any => {
return {config: store.config, clients: store.clients}
return {config: store.config, clients: store.clients, tls: store.tlsConfigs}
})
const stateChange = computed((): any => {