Update pages/chapter_index.py
Browse files- pages/chapter_index.py +1 -1
pages/chapter_index.py
CHANGED
@@ -30,7 +30,7 @@ selected_chapters = dataframe_with_selections(df_chapters)
|
|
30 |
st.write("Your selection:")
|
31 |
st.write(selected_chapters)
|
32 |
|
33 |
-
selected_chapters_list = selected_chapters.iloc[
|
34 |
|
35 |
st.write("ZZZZZZZZZZ: ", selected_chapters_list)
|
36 |
|
|
|
30 |
st.write("Your selection:")
|
31 |
st.write(selected_chapters)
|
32 |
|
33 |
+
selected_chapters_list = selected_chapters.iloc[:,0].tolist()
|
34 |
|
35 |
st.write("ZZZZZZZZZZ: ", selected_chapters_list)
|
36 |
|