Fix - SQL export is using the wrong hour formatting

This commit is contained in:
Infinity 2023-04-11 08:10:45 +00:00 committed by GitHub
parent fee438c6d1
commit 54b1cde5c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@
let pureFileName = null;
function getDefaultFileName() {
return `${connection.database}-${dateFormat(new Date(), 'yyyy-MM-dd-hh-mm-ss')}.sql`;
return `${connection.database}-${dateFormat(new Date(), 'yyyy-MM-dd-HH-mm-ss')}.sql`;
}
onMount(async () => {