mirror of
https://github.com/Radarr/Radarr
synced 2026-01-19 14:02:40 +01:00
Fix: Typo in UI dropdown for time format (#3886)
The time format was incorrectly showing the D/M format as DD/MM (25/03 instead of 25/3).
This commit is contained in:
parent
fedf2326f0
commit
99bf3cf3ba
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ export const firstDayOfWeekOptions = [
|
|||
export const weekColumnOptions = [
|
||||
{ key: 'ddd M/D', value: 'Tue 3/25' },
|
||||
{ key: 'ddd MM/DD', value: 'Tue 03/25' },
|
||||
{ key: 'ddd D/M', value: 'Tue 25/03' },
|
||||
{ key: 'ddd D/M', value: 'Tue 25/3' },
|
||||
{ key: 'ddd DD/MM', value: 'Tue 25/03' }
|
||||
];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue