Skip to content

Commit

Permalink
Merge pull request #98 from 444B/97-bug
Browse files Browse the repository at this point in the history
97 bug
  • Loading branch information
444B authored Jun 19, 2024
2 parents 33ffa55 + eaa9621 commit f475e60
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
34 changes: 17 additions & 17 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "streamlit_analytics2"
version = "0.7.5"
version = "0.7.6"
description = "Track & visualize user interactions with your streamlit app."
authors = [{ name = "444B", email = "[email protected]" }]
license = { file = "LICENSE" }
Expand Down
2 changes: 1 addition & 1 deletion src/streamlit_analytics2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .main import counts, start_tracking, stop_tracking, track # noqa: F401

__version__ = "0.7.5"
__version__ = "0.7.6"
2 changes: 1 addition & 1 deletion src/streamlit_analytics2/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def show_results(counts, reset_callback, unsafe_password=None):
"I'm absolutely sure that I want to reset the results",
],
)
if reset_prompt == "I'm sure that I want to reset the results":
if reset_prompt == "I'm absolutely sure that I want to reset the results":
reset_clicked = st.button("Click here to reset")
if reset_clicked:
reset_callback()
Expand Down

0 comments on commit f475e60

Please sign in to comment.