grafana/ui: Fix value time zone names to be capitalized (#19417)

This commit is contained in:
Peter Holmberg
2019-09-27 09:27:44 +02:00
committed by GitHub
parent dadc2925a2
commit 8024c39435

View File

@@ -16,7 +16,7 @@ export const TimeZonePicker: FC<Props> = ({ onChange, value, width }) => {
const options = group.options.map(timeZone => {
return {
label: timeZone,
value: timeZone.toLowerCase(),
value: timeZone,
};
});