@danhachuel/thunderbolt 0.4.4 → 0.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/main.py +1 -1
- package/package.json +1 -1
package/app/main.py
CHANGED
|
@@ -1303,7 +1303,7 @@ def render_home_update_controls() -> None:
|
|
|
1303
1303
|
""",
|
|
1304
1304
|
unsafe_allow_html=True,
|
|
1305
1305
|
)
|
|
1306
|
-
if st.button("Atualizar Versão", key="home_update_version",
|
|
1306
|
+
if st.button("Atualizar Versão", key="home_update_version", type="primary", icon=":material/system_update:"):
|
|
1307
1307
|
with st.spinner("A instalar a versão mais recente…"):
|
|
1308
1308
|
update_result = update_to_latest(APP_VERSION)
|
|
1309
1309
|
st.session_state["home_update_result"] = update_result
|
package/package.json
CHANGED