Skip to content

Commit

Permalink
fix(explorer): remove purple from ping (solana-labs#23445)
Browse files Browse the repository at this point in the history
  • Loading branch information
oJshua authored Mar 2, 2022
1 parent 9ec514f commit d43786e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions explorer/src/components/SolanaPingCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,10 @@ function PingBarChart({ pingInfo }: { pingInfo: PingRollupInfo }) {
datasets: [
{
backgroundColor: seriesData.map((val) =>
val.loss ? "#fa62fc" : "#00D192"
val.loss > 0.5 ? "#f00" : "#00D192"
),
hoverBackgroundColor: seriesData.map((val) =>
val.loss ? "#fa62fc" : "#00D192"
val.loss > 0.5 ? "#f00" : "#00D192"
),
borderWidth: 0,
data: seriesData.map((val) => val.mean || 0),
Expand Down

0 comments on commit d43786e

Please sign in to comment.