add items to context by default
This commit is contained in:
parent
182ae741d8
commit
95cc9a5081
2 changed files with 2 additions and 2 deletions
|
|
@ -61,7 +61,7 @@ def note_card(note, notebook_id):
|
||||||
"Context",
|
"Context",
|
||||||
label_visibility="collapsed",
|
label_visibility="collapsed",
|
||||||
options=context_icons,
|
options=context_icons,
|
||||||
index=0,
|
index=1,
|
||||||
key=f"note_{note.id}",
|
key=f"note_{note.id}",
|
||||||
)
|
)
|
||||||
st.caption(f"Updated: {naturaltime(note.updated)}")
|
st.caption(f"Updated: {naturaltime(note.updated)}")
|
||||||
|
|
|
||||||
|
|
@ -114,7 +114,7 @@ def source_card(source, notebook_id):
|
||||||
"Context",
|
"Context",
|
||||||
label_visibility="collapsed",
|
label_visibility="collapsed",
|
||||||
options=context_icons,
|
options=context_icons,
|
||||||
index=0,
|
index=1,
|
||||||
key=f"source_{source.id}",
|
key=f"source_{source.id}",
|
||||||
)
|
)
|
||||||
st.caption(
|
st.caption(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue