diff --git a/components/case/representation/index.js b/components/case/representation/index.js index f287a7b6..f4134a93 100644 --- a/components/case/representation/index.js +++ b/components/case/representation/index.js @@ -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) {