-
-
Notifications
You must be signed in to change notification settings - Fork 389
release v0.9.1 #1392
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
release v0.9.1 #1392
Changes from all commits
b82ca39
6421bcf
43fb589
8baef8b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -106,10 +106,15 @@ export function LogsDateRangePicker({ | |
|
|
||
| const handleQuickPeriodClick = useCallback( | ||
| (period: QuickPeriod) => { | ||
| // Toggle: clicking the active period again clears the date range | ||
| if (activeQuickPeriod === period) { | ||
| onDateRangeChange({ startDate: undefined, endDate: undefined }); | ||
|
Comment on lines
+110
to
+111
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
After selecting Today and then changing the start or end clock, Useful? React with 👍 / 👎. |
||
| return; | ||
| } | ||
| const range = getDateRangeForPeriod(period, serverTimeZone); | ||
| onDateRangeChange(range); | ||
| }, | ||
| [onDateRangeChange, serverTimeZone] | ||
| [activeQuickPeriod, onDateRangeChange, serverTimeZone] | ||
| ); | ||
|
|
||
| const handleNavigate = useCallback( | ||
|
|
||
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.
The repository computes
cacheCoefficientBpas an arbitrary integer basis-point value, but this renderer assigns the tier using the unrounded value while displaying only two decimals. Values from 8950 through 8999 therefore appear as0.90in yellow rather than the documented green0.9+tier, and 7950 through 7999 similarly appear as0.80in orange. Either display enough precision to justify the tier or classify the same rounded value that users see.Useful? React with 👍 / 👎.