diff --git a/CITATION.cff b/CITATION.cff index 42139d7..12d3b7c 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -28,48 +28,45 @@ authors: - family-names: Bernier given-names: Alexander affiliation: McGill University - - family-names: Bensoussan - given-names: Yaël - affiliation: University of South Florida - - family-names: Bensoussan - given-names: Yaël - affiliation: University of South Florida - - family-names: Ghosh - given-names: Satrajit S - affiliation: Massachusetts Institute of Technology (MIT) - orcid: 'https://orcid.org/0000-0002-5312-6729' - - family-names: Rameau - given-names: Anaïs - orcid: 'https://orcid.org/0000-0003-1543-2634' - affiliation: Weill Cornell Medicine (WCM) - - family-names: Powell - given-names: Maria E - affiliation: Vanderbilt University Medical Center - orcid: 'https://orcid.org/0000-0002-6643-8991' - family-names: Belisle-Pipon given-names: Jean-Christophe affiliation: Simon Fraser University orcid: 'https://orcid.org/0000-0002-8965-8153' - - family-names: Ravitsky - given-names: Vardit - affiliation: Hastings Center - orcid: 'https://orcid.org/0000-0002-7080-8801' - family-names: Johnson given-names: Alistair affiliation: Glowry orcid: 'https://orcid.org/0000-0002-8735-3014' - - family-names: Elemento - given-names: Olivier - affiliation: Weill Cornell Medicine (WCM) - orcid: 'https://orcid.org/0000-0002-8061-9617' - family-names: Dorr given-names: David affiliation: Oregon Health & Science University School of Medicine (OHSU) orcid: 'https://orcid.org/0000-0003-2318-7261' + - family-names: Ghosh + given-names: Satrajit S + affiliation: Massachusetts Institute of Technology (MIT) + orcid: 'https://orcid.org/0000-0002-5312-6729' - family-names: Payne given-names: Philip R affiliation: Washington University in St. Louis orcid: 'https://orcid.org/0000-0002-9532-2998' + - family-names: Powell + given-names: Maria E + affiliation: Vanderbilt University Medical Center + orcid: 'https://orcid.org/0000-0002-6643-8991' + - family-names: Rameau + given-names: Anaïs + orcid: 'https://orcid.org/0000-0003-1543-2634' + affiliation: Weill Cornell Medicine (WCM) + - family-names: Ravitsky + given-names: Vardit + affiliation: Hastings Center + orcid: 'https://orcid.org/0000-0002-7080-8801' + - family-names: Elemento + given-names: Olivier + affiliation: Weill Cornell Medicine (WCM) + orcid: 'https://orcid.org/0000-0002-8061-9617' + - family-names: Bensoussan + given-names: Yaël + affiliation: University of South Florida - name: Bridge2AI-Voice website: 'https://b2ai-voice.org/' identifiers: diff --git a/src/dashboard.py b/src/dashboard.py index b1e6ffe..1cc95fa 100644 --- a/src/dashboard.py +++ b/src/dashboard.py @@ -40,7 +40,7 @@ def create_tabs(tabs_func): def main(): # Current version of the app - version = "1.3.1" + version = "1.3.2" # Map tab names to functions # In this dictionary, the key is the tab name and the value is the function that will be called when the tab is selected # The function is defined in the respective file diff --git a/src/tabs/overview.py b/src/tabs/overview.py index d088531..e5e7bd8 100644 --- a/src/tabs/overview.py +++ b/src/tabs/overview.py @@ -1,9 +1,4 @@ import streamlit as st -import webbrowser - -# Function to open a URL -def open_url(): - webbrowser.open("https://healthdatanexus.ai/content/b2ai-voice/1.0/") def overview_page(tab_name): st.markdown( @@ -30,4 +25,4 @@ def overview_page(tab_name): """ ) - st.button("Register for Data Access", type="primary", on_click=open_url, help="Register for Data Access", icon=":material/download:") \ No newline at end of file + st.link_button("Register for Data Access", type="primary", url="https://healthdatanexus.ai/content/b2ai-voice/1.0/", help="Register for Data Access", icon=":material/download:") \ No newline at end of file