fix fro incorrect month in repfile name

This commit is contained in:
2025-02-05 11:14:36 +00:00
parent 5c9f4dd854
commit 37b2e1c734
+1 -1
View File
@@ -113,7 +113,7 @@ let MakeRepresentation = (props) => {
const repDate = new Date();
let day = ("0" + repDate.getDate()).slice(-2);
let month = ("0" + repDate.getMonth() + 1).slice(-2);
let month = ("0" + (repDate.getMonth() + 1)).slice(-2);
let year = repDate.getFullYear();
switch (values.representationCapacity) {