diff --git a/journeys/builder.py b/journeys/builder.py index 857fd33d..f980d233 100644 --- a/journeys/builder.py +++ b/journeys/builder.py @@ -117,8 +117,8 @@ def table_selector_dialog() -> None: st.markdown("
", unsafe_allow_html=True) experimental_features = st.checkbox( - "Enable experimental features (optional)", - help="Checking this box will enable generation of experimental features in the semantic model. If enabling this setting, please ensure that you have the proper parameters set on your Snowflake account. Some features (e.g. joins) are currently in Private Preview and available only to select accounts. Reach out to your account team for access.", + "Enable joins (optional)", + help="Checking this box will enable you to add/edit join paths in your semantic model. If enabling this setting, please ensure that you have the proper parameters set on your Snowflake account. Reach out to your account team for access.", ) st.session_state["experimental_features"] = experimental_features diff --git a/journeys/iteration.py b/journeys/iteration.py index abb698de..ad355320 100644 --- a/journeys/iteration.py +++ b/journeys/iteration.py @@ -629,8 +629,8 @@ def set_up_requirements() -> None: file_name = st.selectbox("File name", options=available_files, index=None) experimental_features = st.checkbox( - "Enable experimental features (optional)", - help="Checking this box will enable generation of experimental features in the semantic model. If enabling this setting, please ensure that you have the proper parameters set on your Snowflake account. Some features (e.g. joins) are currently in Private Preview and available only to select accounts. Reach out to your account team for access.", + "Enable joins (optional)", + help="Checking this box will enable you to add/edit join paths in your semantic model. If enabling this setting, please ensure that you have the proper parameters set on your Snowflake account. Reach out to your account team for access.", ) if st.button( @@ -703,7 +703,9 @@ def show() -> None: return_home_button() if "yaml" not in st.session_state: # Only proceed to download the YAML from stage if we don't have one from the builder flow. - yaml = download_yaml(st.session_state.file_name, st.session_state.snowflake_stage.stage_name) + yaml = download_yaml( + st.session_state.file_name, st.session_state.snowflake_stage.stage_name + ) st.session_state["yaml"] = yaml st.session_state["semantic_model"] = yaml_to_semantic_model(yaml) if "last_saved_yaml" not in st.session_state: diff --git a/partner/looker.py b/partner/looker.py index 903a62e1..fe874670 100644 --- a/partner/looker.py +++ b/partner/looker.py @@ -232,8 +232,8 @@ def set_looker_semantic() -> None: sample_values = input_sample_value_num() experimental_features = st.checkbox( - "Enable experimental features (optional)", - help="Checking this box will enable generation of experimental features in the semantic model. If enabling this setting, please ensure that you have the proper parameters set on your Snowflake account. Some features (e.g. joins) are currently in Private Preview and available only to select accounts. Reach out to your account team for access.", + "Enable joins (optional)", + help="Checking this box will enable you to add/edit join paths in your semantic model. If enabling this setting, please ensure that you have the proper parameters set on your Snowflake account. Reach out to your account team for access.", ) if st.button("Continue", type="primary"):