Frontend: Fix edit month dropdown #430
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
This commit is contained in:
parent
336ad3e751
commit
2633e12dac
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ export const MonthsShort = () => {
|
|||
let result = [];
|
||||
|
||||
for (let i = 1; i <= 12; i++) {
|
||||
result.push({"value": i + 1, "text": i.toString().padStart(2, "0")});
|
||||
result.push({"value": i, "text": i.toString().padStart(2, "0")});
|
||||
}
|
||||
|
||||
result.push({"value": -1, "text": $gettext("Unknown")});
|
||||
|
|
Loading…
Reference in a new issue