wldmr commited on
Commit
d235bd6
·
1 Parent(s): 82070ad

added input number label

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -561,7 +561,7 @@ st.subheader("Sequence Loader")
561
  # input hash as secret
562
 
563
  input_hash = st.text_input("Enter Hash:")
564
- item_limit = st.number_input("Number of Videos",value=3)
565
  if st.button('Load Sequence'):
566
  HASH_KEY = st.secrets["hash_key"]
567
  if input_hash == HASH_KEY:
 
561
  # input hash as secret
562
 
563
  input_hash = st.text_input("Enter Hash:")
564
+ item_limit = st.number_input(label="Number of Videos",value=3)
565
  if st.button('Load Sequence'):
566
  HASH_KEY = st.secrets["hash_key"]
567
  if input_hash == HASH_KEY: