-
-
Notifications
You must be signed in to change notification settings - Fork 617
Add Response Time Chart option to Status Page configuration and display Closes #2924 #3026
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
base: develop
Are you sure you want to change the base?
Changes from 2 commits
488fe76
729be8b
309964a
d233d02
a7500d2
93b38ba
9c21de7
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -3,7 +3,7 @@ import Breadcrumbs from "@/Components/v1/Breadcrumbs/index.jsx"; | |||||
| import MonitorDetailsControlHeader from "@/Components/v1/MonitorDetailsControlHeader/index.jsx"; | ||||||
| import MonitorTimeFrameHeader from "@/Components/v1/MonitorTimeFrameHeader/index.jsx"; | ||||||
| import ChartBoxes from "./Components/ChartBoxes/index.jsx"; | ||||||
| import ResponseTimeChart from "./Components/Charts/ResponseTimeChart.jsx"; | ||||||
| import ResponseTimeChart from "../../../../Components/v1/Charts/ResponseTimeChart/ResponseTimeChart.jsx"; | ||||||
|
||||||
| import ResponseTimeChart from "../../../../Components/v1/Charts/ResponseTimeChart/ResponseTimeChart.jsx"; | |
| import ResponseTimeChart from "@/Components/v1/Charts/ResponseTimeChart/ResponseTimeChart.jsx"; |
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.
Fix PropTypes: update
isLoadingtomonitorIsLoading.The PropTypes definition still references
isLoading, but the component now usesmonitorIsLoading. This mismatch will cause PropTypes validation warnings and confusion.Apply this diff to fix the PropTypes definition:
ResponseTimeChart.propTypes = { - isLoading: PropTypes.bool, + monitorIsLoading: PropTypes.bool, groupedChecks: PropTypes.array, dateRange: PropTypes.string, };📝 Committable suggestion
🤖 Prompt for AI Agents