Skip to content

Commit b17fa81

Browse files
authored
Update EventContainer.tsx
1 parent e893ce4 commit b17fa81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/containers/EventContainer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ const EventContainer: React.FC<EventContainerProps> = React.memo(props => {
8989
{service.includes('kafkametrics') || service.includes('kubernetesmetrics') ? currChunk : []}
9090
{eventChartsArr.length > chunkSize && (
9191
<>
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 }>
9393
Prev
9494
</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}>
9696
Next
9797
</Button>
9898
</>

0 commit comments

Comments
 (0)