diff --git a/public/app/features/api-keys/ApiKeysPage.tsx b/public/app/features/api-keys/ApiKeysPage.tsx index 511ba57c275..cb932334ec8 100644 --- a/public/app/features/api-keys/ApiKeysPage.tsx +++ b/public/app/features/api-keys/ApiKeysPage.tsx @@ -171,7 +171,7 @@ export class ApiKeysPage extends PureComponent { format = format || 'YYYY-MM-DD HH:mm:ss'; const timezone = getTimeZone(store.getState().user); - return timezone.isUtc ? date.utc().format(format) : date.format(format); + return timezone === 'utc' ? date.utc().format(format) : date.format(format); } renderAddApiKeyForm() {