-
Notifications
You must be signed in to change notification settings - Fork 515
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
Adds RecordMeta
component
#4653
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
✅ Deploy Preview for care-egov-staging ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
👋 Hi, @rithviknishad, This message is automatically generated by prince-chrismc/label-merge-conflicts-action so don't hesitate to report issues/improvements there. |
👋 Hi, @rithviknishad, This message is automatically generated by prince-chrismc/label-merge-conflicts-action so don't hesitate to report issues/improvements there. |
src/CAREUI/display/RelativeTime.tsx
Outdated
useEffect(() => { | ||
const timer = setInterval(() => { | ||
setRelativeTime(moment(time).fromNow()); | ||
}, 1000); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just a thought, instead of having this 1000 (1s) why not have it dynamic meaning,
if it is 5 minutes ago, we can have 60 * 1000
if it is hours, it could be 60 * 60 * 1000
👋 Hi, @rithviknishad, This message is automatically generated by prince-chrismc/label-merge-conflicts-action so don't hesitate to report issues/improvements there. |
SonarCloud Quality Gate failed. 0 Bugs No Coverage information |
LGTM @rithviknishad check the cypress failed |
@nihal467 cypress failed to start because of integrity errors in the fixtures. |
Proposed Changes
RelativeTime
component which shows actual timestamp on hover else relative time (like GitHub relative-time) #4649@coronasafe/care-fe-code-reviewers @coronasafe/code-reviewers
Merge Checklist