Skip to content

Commit

Permalink
Merge pull request #58 from arnaudmiribel/typo-and-forum-link
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudmiribel authored Nov 2, 2022
2 parents 5afc88a + 7092b69 commit c464866
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/streamlit_extras/toggle_switch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ def example():
__icon__ = "🔛" # give your extra an icon!
__examples__ = [example] # create some examples to show how cool your extra is!
__author__ = "Carlos D. Serrano"
__pypi_name__ = "streamlit-toggle_switch"
__pypi_name__ = "streamlit-toggle-switch"
__package_name__ = "streamlit_toggle"
__github_repo__ = "sqlinsights/streamlit-toggle-switch" # Optional
__forum_url__ = "https://discuss.streamlit.io/t/streamlit-toggle-switch/32474"
__experimental_playground__ = False # Optional
3 changes: 2 additions & 1 deletion src/streamlit_extras/vertical_slider/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@ def example():
__func__ = vertical_slider # main function of your extra!
__title__ = "Vertical Slider" # title of your extra!
__desc__ = (
"Continuos Vertical Slider with color customizations" # description of your extra!
"Continuous Vertical Slider with color customizations" # description of your extra!
)
__icon__ = "🎚" # give your extra an icon!
__examples__ = [example] # create some examples to show how cool your extra is!
__author__ = "Carlos D. Serrano"
__pypi_name__ = "streamlit-vertical-slider"
__package_name__ = "streamlit_vertical_slider"
__github_repo__ = "sqlinsights/streamlit-vertical-slider" # Optional
__forum_url__ = "https://discuss.streamlit.io/t/vertical-slider-component/32229"
__experimental_playground__ = False # Optional

0 comments on commit c464866

Please sign in to comment.