Skip to content

Commit

Permalink
market fix for controls
Browse files Browse the repository at this point in the history
  • Loading branch information
markhollingworth committed Apr 13, 2022
1 parent c09c46c commit 8129c55
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pages/controls.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,7 @@ def update_accordions(n):
"Stop",
id={"type": "btn-stop", "index": pair_count},
n_clicks=0,
value=i,
className="btn btn-primary",
)
)
Expand All @@ -451,6 +452,7 @@ def update_accordions(n):
"Pause",
id={"type": "btn-pause", "index": pair_count},
n_clicks=0,
value=i,
className="btn btn-primary",
)
)
Expand All @@ -460,6 +462,7 @@ def update_accordions(n):
"Resume",
id={"type": "btn-resume", "index": pair_count},
n_clicks=0,
value=i,
className="btn btn-primary",
)
)
Expand All @@ -469,6 +472,7 @@ def update_accordions(n):
"Buy",
id={"type": "btn-buy", "index": pair_count},
n_clicks=0,
value=i,
className="btn btn-primary",
)
)
Expand All @@ -478,6 +482,7 @@ def update_accordions(n):
"Sell",
id={"type": "btn-sell", "index": pair_count},
n_clicks=0,
value=i,
className="btn btn-primary",
)
)
Expand Down

0 comments on commit 8129c55

Please sign in to comment.