Skip to content

Commit 55bcba4

Browse files
committed
✏️ Fixes added to Pages
1 parent ccfa2d2 commit 55bcba4

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

cells/streamlit/cells/pages/ Elastic_Metric_for_Cell_Boundary_Analysis.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
NEW_AS = [0.75, 0.5, 0.25, 0.01] #, 1.6] #, 1.4, 1.2, 1, 0.5, 0.2, 0.1]
175175
NEW_BS = [0.5, 0.5, 0.5, 0.5] #, 2, 2, 2, 2, 2, 2, 2]
176176

177-
st.makrdown("## Distances to the Mean")
177+
st.markdown("## Distances to the Mean")
178178

179179
# We multiply the distances by a 100, for visualization purposes. It amounts to a change of units.
180180
dists = {}

cells/streamlit/cells/pages/Cell_Shear.py

+7-4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
import pandas as pd
33
from io import StringIO
44

5+
st.set_page_config(
6+
page_title="Cell Shear Analysis",
7+
page_icon="💥",
8+
)
9+
510
st.write("# Welcome to the Cell Shear Analysis App! 👋")
611

712
st.markdown(
@@ -38,10 +43,8 @@
3843
# Can be used wherever a "file-like" object is accepted:
3944
dataframe = pd.read_csv(uploaded_file)
4045
st.write(dataframe)
41-
st.set_page_config(
42-
page_title="Hello",
43-
page_icon="👋",
44-
)
46+
47+
4548

4649

4750

0 commit comments

Comments
 (0)