Fix mismatched names

This commit is contained in:
Nick Mowen 2023-02-26 07:23:22 -07:00
parent 8fe8322d3c
commit da2e086e7c
2 changed files with 3 additions and 3 deletions

View File

@ -487,7 +487,7 @@ ui:
# Optional: Use an experimental recordings / camera view UI (default: shown below) # Optional: Use an experimental recordings / camera view UI (default: shown below)
experimental_ui: False experimental_ui: False
# Optional: Set the time format used. # Optional: Set the time format used.
# Options are browser, hours12, or hours24 (default: shown below) # Options are browser, 12hour, or 24hour (default: shown below)
time_format: browser time_format: browser
# Optional: Set the date style for a specified length. # Optional: Set the date style for a specified length.
# Options are: full, long, medium, sort # Options are: full, long, medium, sort

View File

@ -68,8 +68,8 @@ class LiveModeEnum(str, Enum):
class TimeFormatEnum(str, Enum): class TimeFormatEnum(str, Enum):
browser = "browser" browser = "browser"
hours12 = "hours12" hours12 = "12hour"
hours24 = "hours24" hours24 = "24hour"
class DateTimeStyleEnum(str, Enum): class DateTimeStyleEnum(str, Enum):