when I run below code and try to display the data captured via st.multiselect or st_tags in data_editor. It becomes non-editable (as highlighted in the attached snapshot).
Is there any way to allow data to be edited?
import streamlit as st
import pandas as pd
options = st.multiselect(
“What are your favorite colors”,
[“Green”, “Yellow”, “Red”, “Blue”])
st.write(“You selected:”, options)
df = pd.DataFrame(
[
{ “Marks”: 40, “selectbox”: True},
{"Marks": 45, "selectbox": options},