Skip to content

Commit 81976e2

Browse files
authored
Merge pull request #259 from hummingbot/fix-typos
update save_config.py
2 parents 8dc3019 + 4bf7dd4 commit 81976e2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

frontend/components/save_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
nest_asyncio.apply()
77

88
def render_save_config(config_base_default: str, config_data: dict):
9-
st.write("### Upload Config to BackendAPI")
9+
st.write("### Upload Config to Hummingbot-API")
1010
backend_api_client = get_backend_api_client()
1111
try:
1212
all_configs = backend_api_client.controllers.list_controller_configs()

frontend/pages/config/kalman_filter_v1/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def add_indicators(df, observation_covariance=1, transition_covariance=0.01, ini
221221
file_name=f'{id.lower()}.yml',
222222
mime='text/yaml'
223223
)
224-
upload_config_to_backend = st.button("Upload Config to BackendAPI")
224+
upload_config_to_backend = st.button("Upload Config to Hummingbot-API")
225225

226226
if upload_config_to_backend:
227227
backend_api_client = get_backend_api_client()

frontend/pages/config/xemm_controller/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def create_order_graph(order_type, targets, min_profit, max_profit):
126126
yaml_config = yaml.dump(config, default_flow_style=False)
127127

128128
with c3:
129-
upload_config_to_backend = st.button("Upload Config to BackendAPI")
129+
upload_config_to_backend = st.button("Upload Config to Hummingbot-API")
130130

131131
if upload_config_to_backend:
132132
backend_api_client = get_backend_api_client()

0 commit comments

Comments
 (0)