@danhachuel/thunderbolt 0.4.26 → 0.4.27
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 +2 -1
- package/package.json +1 -1
package/app/main.py
CHANGED
|
@@ -1575,7 +1575,8 @@ def render_thumbnail_blueprints():
|
|
|
1575
1575
|
st.success("Associação guardada; canais com esse Blueprint usarão esta thumbnail blueprint automaticamente.")
|
|
1576
1576
|
except ValueError as exc:
|
|
1577
1577
|
st.error(str(exc))
|
|
1578
|
-
st.
|
|
1578
|
+
with st.expander("Abrir documento completo", expanded=False):
|
|
1579
|
+
st.code(path.read_text(encoding="utf-8"), language="markdown")
|
|
1579
1580
|
st.divider()
|
|
1580
1581
|
st.subheader("Associar ao canal e ao Blueprint de roteiro")
|
|
1581
1582
|
channels = read_json("channels.json", [])
|
package/package.json
CHANGED