Add mail connection details dialog

This commit is contained in:
Johannes Zellner
2025-03-12 13:41:07 +01:00
parent 00a5dbf42c
commit 0865b9bbc5
12 changed files with 56 additions and 18 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ onMounted(async () => {
uptime.value = moment.duration(info.value.uptimeSecs, 'seconds').locale(navigator.language).humanize();
activeSince.value = info.value.activationTime ? moment(info.value.activationTime).fromNow() : 'unknown';
[error, result] = await dashboardModel.getConfig();
[error, result] = await dashboardModel.config();
if (error) return console.error(error);
config.value = result;
});