Browse Source
Disable posting new offers in the maker when there is no order price
feature/integration-tests
Mariusz Klochowicz
3 years ago
No known key found for this signature in database
GPG Key ID: 470C865699C8D4D
1 changed files with
1 additions and
1 deletions
-
frontend/src/MakerApp.tsx
|
|
@ -139,7 +139,7 @@ export default function App() { |
|
|
|
|
|
|
|
<GridItem colSpan={2} textAlign="center"> |
|
|
|
<Button |
|
|
|
disabled={isCreatingNewCfdOrder} |
|
|
|
disabled={isCreatingNewCfdOrder || orderPrice === "0"} |
|
|
|
variant={"solid"} |
|
|
|
colorScheme={"blue"} |
|
|
|
onClick={() => { |
|
|
|