Browse Source

Merge pull request #209 from comit-network/improve-sell-colour

Use blue instead of red for sell positions
upload-correct-windows-binary
Mariusz 3 years ago
committed by GitHub
parent
commit
aacdddd991
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      frontend/src/components/Types.tsx

2
frontend/src/components/Types.tsx

@ -19,7 +19,7 @@ export class Position {
case PositionKey.BUY:
return "green";
case PositionKey.SELL:
return "red";
return "blue";
}
}
}

Loading…
Cancel
Save