-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tooltip Timezones #7564
Comments
This tooltip always shows the UTC time of the server AFAIR. This is just a plain |
I originally thought they'd be UTC as well, based on historical issues noted in this repo, but in practice I found it was localtime. It uses the angular DatePipe mentioned above without defining a TZ, so it defaults to host/browser timezone. From a user standpoint, this is more intuitive IMHO in a browser context even though DevOps folks often work with systems in UTC timezone. I just think it should display a timezone regardless. |
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
What would you like to be added?
Relative datetime columns such as Created show up with a tool-tip that has no timezone. On relatively recent events, one can infer that this is actually the browser's host timezone, but there is no indication of that. Any thoughts to adjusting format (currently is
medium
) this to include a timezone attribute?dashboard/modules/web/src/common/components/date/template.html
Line 18 in e175cf1
dashboard/modules/web/src/common/components/date/component.ts
Line 45 in e175cf1
https://angular.io/api/common/DatePipe
Why is this needed?
Sometimes it's important to know exactly when things happened and without a timezone the user could guess thinking everything was in UTC or system time for example.
The text was updated successfully, but these errors were encountered: