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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
frontend/src/components/Types.tsx
|
|
@ -19,7 +19,7 @@ export class Position { |
|
|
|
case PositionKey.BUY: |
|
|
|
return "green"; |
|
|
|
case PositionKey.SELL: |
|
|
|
return "red"; |
|
|
|
return "blue"; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|