mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
fix: sort time zones (#2210)
Summary: The list of time zones in the edit workspace schedule form is not sorted alphabetically.
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
import tzData from "tzdata"
|
||||
|
||||
export const zones: string[] = Object.keys(tzData.zones)
|
||||
export const zones: string[] = Object.keys(tzData.zones).sort()
|
||||
|
||||
Reference in New Issue
Block a user