time format on mobile devices #191361
-
🏷️ Discussion TypeProduct Feedback Bodyapparently all activities have their timestamp rendered in human readable format. this is circumventable by hovering a mouse cursor on the time stamp, but when checking activity on mobile or touch screen devices it is not possible to get precise commit times. i personally find this problematic in teams with critical timing as i don’t always have access to a mouse cursor. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
Hi @tovabele, this is a classic UI/UX gap for touch devices. Since mobile browsers don't support the 'hover' state, the absolute timestamp (hidden in the HTML (If this helps, please Mark as Answer.) |
Beta Was this translation helpful? Give feedback.
-
|
Thank you for posting this. I've been quietly annoyed by this for way too long. The relative timestamps ("2 hours ago", "yesterday") are fine for a quick glance, but when I'm actually debugging a deployment failure or trying to figure out if someone pushed before or after a critical incident, I need the exact UTC time. The hover-to-reveal pattern is just broken on touch devices. Long-press sometimes works, but half the time it triggers the browser's context menu instead of the tooltip. On Safari iOS, I've found that tapping and holding exactly on the timestamp text (not the surrounding area) works maybe 30% of the time. Not reliable. What I've resorted to:
A real fix would be so simple: Add a I've upvoted your feedback. Hopefully someone on the mobile team notices this. It's a small thing, but when you're on-call and only have your phone, it's a real blocker. |
Beta Was this translation helpful? Give feedback.
Hi @tovabele, this is a classic UI/UX gap for touch devices. Since mobile browsers don't support the 'hover' state, the absolute timestamp (hidden in the HTML
titleattribute) is nearly impossible to trigger naturally.A temporary workaround is to long-press the relative timestamp on some mobile browsers, this will force the tooltip to appear. However, a real fix would be for GitHub to implement a 'tap-to-toggle' feature for times on mobile. This is excellent product feedback for the mobile engineering team.
(If this helps, please Mark as Answer.)