File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -89,10 +89,10 @@ const EventContainer: React.FC<EventContainerProps> = React.memo(props => {
89
89
{ service . includes ( 'kafkametrics' ) || service . includes ( 'kubernetesmetrics' ) ? currChunk : [ ] }
90
90
{ eventChartsArr . length > chunkSize && (
91
91
< >
92
- < Button id = "getCharts " onClick = { prevChunk } variant = "contained" color = "primary" disabled = { currIndex <= chunkSize } >
92
+ < Button id = "prevCharts " onClick = { prevChunk } variant = "contained" color = "primary" disabled = { currIndex <= chunkSize } >
93
93
Prev
94
94
</ Button >
95
- < Button id = "getCharts " onClick = { nextChunk } variant = "contained" color = "primary" disabled = { currIndex >= eventChartsArr . length } >
95
+ < Button id = "nextCharts " onClick = { nextChunk } variant = "contained" color = "primary" disabled = { currIndex >= eventChartsArr . length } >
96
96
Next
97
97
</ Button >
98
98
</ >
You can’t perform that action at this time.
0 commit comments