Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/minor bugs #152

Merged
merged 2 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/components/deploy_v2_with_controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self):
self._controller_configs_available = self._backend_api_client.get_all_controllers_config()
self._controller_config_selected = []
self._bot_name = None
self._image_name = "dardonacci/hummingbot:latest"
self._image_name = "hummingbot/hummingbot:latest"
self._credentials = "master_account"

def _set_bot_name(self, bot_name):
Expand Down
4 changes: 2 additions & 2 deletions frontend/components/launch_strategy_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, *args, **kwargs):
self._controller_configs_available = self._backend_api_client.get_all_controllers_config()
self._controller_config_selected = None
self._bot_name = None
self._image_name = "dardonacci/hummingbot:latest"
self._image_name = "hummingbot/hummingbot:latest"
self._credentials = "master_account"

def _set_bot_name(self, event):
Expand Down Expand Up @@ -105,7 +105,7 @@ def __call__(self):
available_images = self._backend_api_client.get_available_images("hummingbot")
with mui.FormControl(variant="standard", sx={"width": "100%"}):
mui.FormHelperText("Available Images")
with mui.Select(label="Hummingbot Image", defaultValue="dardonacci/hummingbot:latest",
with mui.Select(label="Hummingbot Image", defaultValue="hummingbot/hummingbot:latest",
variant="standard", onChange=lazy(self._set_image_name)):
for image in available_images:
mui.MenuItem(image, value=image)
Expand Down
Loading