Ludvig
commited on
Commit
·
af193be
1
Parent(s):
3de6a56
Adds "generate first" message to settings download button
Browse files
app.py
CHANGED
|
@@ -380,8 +380,9 @@ if st.session_state["step"] >= 2:
|
|
| 380 |
DownloadHeader.centered_json_download(
|
| 381 |
data=st.session_state["selected_design_settings"],
|
| 382 |
file_name="design_settings.json",
|
| 383 |
-
label="Download design settings",
|
| 384 |
-
help="Download the design settings to allow reusing settings in future plots."
|
|
|
|
| 385 |
)
|
| 386 |
|
| 387 |
st.markdown("---")
|
|
|
|
| 380 |
DownloadHeader.centered_json_download(
|
| 381 |
data=st.session_state["selected_design_settings"],
|
| 382 |
file_name="design_settings.json",
|
| 383 |
+
label="Download design settings (*Generate first!*)",
|
| 384 |
+
help="Download the design settings to allow reusing settings in future plots. "
|
| 385 |
+
"Press `Generate plot` before downloading to include all the latest design changes.",
|
| 386 |
)
|
| 387 |
|
| 388 |
st.markdown("---")
|