KeshavRa commited on
Commit
06f28de
·
verified ·
1 Parent(s): 5227256

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -229,7 +229,8 @@ else:
229
  st.write(shelter['Application Details'])
230
  st.markdown(f"- **🕒\tOpen Hours**: {shelter['Open Hours']}")
231
  st.markdown(f"- **📍\tAddress**: {shelter['Address']}")
232
- st.markdown(f"- **📞\tPhone Number**: {shelter['Phone']}")
 
233
  st.divider()
234
 
235
  with st.expander("More Information"):
 
229
  st.write(shelter['Application Details'])
230
  st.markdown(f"- **🕒\tOpen Hours**: {shelter['Open Hours']}")
231
  st.markdown(f"- **📍\tAddress**: {shelter['Address']}")
232
+ phone = f'<a href="tel:{shelter['Phone']}">{shelter['Phone']}</a>'
233
+ st.markdown(f"- **📞\tPhone Number**: {phone}", unsafe_allow_html=True)
234
  st.divider()
235
 
236
  with st.expander("More Information"):