-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
web/common: utils: fix infinite value handling in getRelativeTime function #13564
web/common: utils: fix infinite value handling in getRelativeTime function #13564
Conversation
✅ Deploy Preview for authentik-storybook ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for authentik-docs ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #13564 +/- ##
=======================================
Coverage 92.68% 92.68%
=======================================
Files 794 794
Lines 40479 40479
=======================================
+ Hits 37518 37519 +1
+ Misses 2961 2960 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
46a6060
to
f9c3962
Compare
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.
Approved, but I made a suggestion.
return rtf.format(Math.round(elapsed / value), key); | ||
if (Math.abs(elapsed) > value || key === "second") { | ||
let rounded = Math.round(elapsed / value); | ||
if (!isFinite(rounded)) { |
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.
"Because coercion inside the isNaN() function can be surprising, you may prefer to use Number.isNaN()."
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.
My code doesn't seem to use isNaN at the moment. Sorry if I'd not get what you mean, but do you want me to add a check for NaN or replace part of my patch with a NaN check?
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.
isFinite()
uses isNan()
under the covers, as the link documents. Although the isFinite()
page has the same quote:
"Because coercion inside the isFinite() function can be surprising, you may prefer to use Number.isFinite()."
Closes #13562
Details
REPLACE ME
Checklist
ak test authentik/
)make lint-fix
)If an API change has been made
make gen-build
)If changes to the frontend have been made
make web
)If applicable
make website
)