Skip to content

Commit

Permalink
Fix links with different images
Browse files Browse the repository at this point in the history
  • Loading branch information
rjjfox committed Dec 17, 2021
1 parent dd0e034 commit e7946b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
t = """
<h3 class='frequentist_title'>Significant</h3>
<img class='frequentist_icon'
src='https://github.com/rjjfox/ab-test-calculator/blob/master/img/positive-vote.png'>
src='https://raw.githubusercontent.com/rjjfox/ab-test-calculator/master/img/positive-vote.png'>
"""
st.markdown(t, unsafe_allow_html=True)

Expand Down Expand Up @@ -182,7 +182,7 @@
t = """
<h3 class='frequentist_title'>Not significant</h3>
<img class='frequentist_icon'
src='https://github.com/rjjfox/ab-test-calculator/blob/master/img/negative-vote.png'>
src='https://raw.githubusercontent.com/rjjfox/ab-test-calculator/master/img/negative-vote.png'>
"""
st.markdown(t, unsafe_allow_html=True)

Expand Down

0 comments on commit e7946b2

Please sign in to comment.