diff --git a/frontend/vue/components/Admin/AuditLog.vue b/frontend/vue/components/Admin/AuditLog.vue index 3005611de..eab4d9f90 100644 --- a/frontend/vue/components/Admin/AuditLog.vue +++ b/frontend/vue/components/Admin/AuditLog.vue @@ -165,7 +165,9 @@ const formatTimestamp = (unix_timestamp) => { const {timeConfig} = useAzuraCast(); return DateTime.fromSeconds(unix_timestamp).toLocaleString( - {...DateTime.DATETIME_SHORT, timeConfig} + { + ...DateTime.DATETIME_SHORT, ...timeConfig + } ); } diff --git a/frontend/vue/components/Admin/Backups.vue b/frontend/vue/components/Admin/Backups.vue index 309d088fd..11c516153 100644 --- a/frontend/vue/components/Admin/Backups.vue +++ b/frontend/vue/components/Admin/Backups.vue @@ -268,7 +268,7 @@ const toLocaleTime = (timestamp) => { const {timeConfig} = useAzuraCast(); return DateTime.fromSeconds(timestamp).toLocaleString( - {...DateTime.DATETIME_SHORT, timeConfig} + {...DateTime.DATETIME_SHORT, ...timeConfig} ); };