TimeRangePicker: Show `UTC+00:00` instead of just `UTC` (#84395)

pull/84475/head
Laura Fernández 1 year ago committed by GitHub
parent ec5e18cd93
commit 38a8bf10f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      packages/grafana-ui/src/components/DateTimePickers/TimeZonePicker/TimeZoneOffset.tsx

@ -33,9 +33,6 @@ export const formatUtcOffset = (timestamp: number, timeZone: TimeZone): string =
format: 'Z',
});
if (offset === '+00:00') {
return 'UTC';
}
return `UTC${offset}`;
};

Loading…
Cancel
Save