Reports can set max count. Bug fixes. Clean up.

This commit is contained in:
Scott Idem
2024-07-17 17:08:09 -04:00
parent 625169a321
commit 064bba3d62
7 changed files with 189 additions and 37 deletions

View File

@@ -286,6 +286,13 @@ let events_session_data_struct: key_val = {
new_upload_list: null,
files_uploading_count: null,
qry_max__sessions: 25,
qry_max__presentations: 25,
qry_max__presenters: 25,
qry_max__files: 25,
show_fields__presentation: true,
show_fields__session: true,
},
// Speakers Management (Collection)
@@ -336,6 +343,7 @@ let events_slct_obj_template: key_val = {
'file_id': null,
'file_obj': {},
'file_obj_li': [],
'event_file_obj': {},
'event_file_obj_li': [],
@@ -350,14 +358,17 @@ let events_slct_obj_template: key_val = {
'presentation_id': null,
'presentation_obj': {},
'presentation_obj_li': [],
'event_presentation_obj': {},
'presenter_id': null,
'presenter_obj': {},
'presenter_obj_li': [],
'event_presenter_obj': {},
'session_id': null,
'session_obj': {},
'session_obj_li': [],
'event_session_obj': {},
'lq__presenter_obj': {}, // Testing passing a LiveQuery object around...
};