Worked on new message for session page view. Wrapping up for the day.

This commit is contained in:
Scott Idem
2024-09-18 19:07:18 -04:00
parent 37c40ff4fc
commit f9e156e862
6 changed files with 153 additions and 102 deletions

View File

@@ -279,6 +279,7 @@ export function sync_config__event_pres_mgmt(
pres_mgmt_cfg_local.hide__session_code = pres_mgmt_cfg_remote?.hide__session_code ?? false;
pres_mgmt_cfg_local.hide__session_description = pres_mgmt_cfg_remote?.hide__session_description ?? false;
pres_mgmt_cfg_local.hide__session_location = pres_mgmt_cfg_remote?.hide__session_location ?? false;
pres_mgmt_cfg_local.hide__session_msg = pres_mgmt_cfg_remote?.hide__session_msg ?? false;
pres_mgmt_cfg_local.hide__session_poc_profile = pres_mgmt_cfg_remote?.hide__session_poc_profile ?? false; // This should still allow the POC name to be shown.
pres_mgmt_cfg_local.hide__session_poc_biography = pres_mgmt_cfg_remote?.hide__session_poc_biography ?? false; // New and in progress

View File

@@ -179,7 +179,7 @@ let events_local_data_struct: key_val = {
// Presentation Management
pres_mgmt: {
sync_local_config: true,
sync_local_config: false,
lock_config: false,
datetime_format: 'datetime_12_long',

View File

@@ -481,7 +481,7 @@ async function handle_update__data_store(
<div
class="ae__elem__data_store relative {class_li}"
class:hide={hide}
class:hidden={hide}
>
{#if ae_ds_tmp}
@@ -856,7 +856,7 @@ section.edit {
}
*/
.hide {
/* .hide {
display: none;
}
} */
</style>