fix fro incorrect month in repfile name
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user