diff --git a/src/renderer/components/ModalExportSchema.vue b/src/renderer/components/ModalExportSchema.vue index b3fb798c..b7de183e 100644 --- a/src/renderer/components/ModalExportSchema.vue +++ b/src/renderer/components/ModalExportSchema.vue @@ -327,7 +327,7 @@ const schemaItems = computed(() => { return []; }); const filename = computed(() => { - const date = moment().format('YYYY-MM-DD'); + const date = moment().format('YYYY-MM-DD_HH-mm-ss'); return `${props.selectedSchema}_${date}.${options.value.outputFormat}`; }); const dumpFilePath = computed(() => `${basePath.value}/${filename.value}`);