Skip to content
This repository was archived by the owner on Oct 29, 2019. It is now read-only.

Commit ad3ee45

Browse files
committed
Fix old/young gc color style
1 parent 62b9835 commit ad3ee45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/routes/Application/Server.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ export default class Server extends PureComponent {
136136
}
137137
>
138138
<StackBar
139-
data={axis(duration, getGCTrend.oldGCTime, ({ x, y }) => ({ x, y, type: 'oldGCTime' }))
140-
.concat(axis(duration, getGCTrend.youngGCTime, ({ x, y }) => ({ x, y, type: 'youngGCTime' })))}
139+
data={axis(duration, getGCTrend.youngGCTime, ({ x, y }) => ({ x, y, type: 'youngGCTime' }))
140+
.concat(axis(duration, getGCTrend.oldGCTime, ({ x, y }) => ({ x, y, type: 'oldGCTime' })))}
141141
/>
142142
</ChartCard>
143143
</Col>

0 commit comments

Comments
 (0)