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",
|
||||
label_visibility="collapsed",
|
||||
options=context_icons,
|
||||
index=0,
|
||||
index=1,
|
||||
key=f"note_{note.id}",
|
||||
)
|
||||
st.caption(f"Updated: {naturaltime(note.updated)}")
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ def source_card(source, notebook_id):
|
|||
"Context",
|
||||
label_visibility="collapsed",
|
||||
options=context_icons,
|
||||
index=0,
|
||||
index=1,
|
||||
key=f"source_{source.id}",
|
||||
)
|
||||
st.caption(
|
||||
|
|
|
|||
Loading…
Reference in a new issue