Finally getting the event session list to use the LiveQuery with a list of IDs to work correctly. Now replacing old version. Well... maybe some more testing tomorrow.
This commit is contained in:
@@ -649,7 +649,12 @@ export async function search__event_session(
|
||||
like_presenter_search_qry_str = null,
|
||||
file_count = false, // If true then only show those that have a file count
|
||||
location_name = null,
|
||||
params = {},
|
||||
params = {
|
||||
'qry__enabled': 'enabled',
|
||||
'qry__hidden':'not_hidden',
|
||||
'qry__limit': 150,
|
||||
'qry__offset': 0
|
||||
},
|
||||
try_cache = true,
|
||||
log_lvl = 0
|
||||
}: {
|
||||
@@ -668,7 +673,9 @@ export async function search__event_session(
|
||||
log_lvl?: number
|
||||
}
|
||||
) {
|
||||
console.log(`*** search__event_session() *** event_id=${event_id}`);
|
||||
if (log_lvl) {
|
||||
console.log(`*** search__event_session() *** event_id=${event_id}`);
|
||||
}
|
||||
|
||||
let enabled: string = (params.qry__enabled ?? 'enabled'); // all, disabled, enabled
|
||||
let hidden: string = (params.qry__hidden ?? 'not_hidden'); // all, hidden, not_hidden
|
||||
|
||||
Reference in New Issue
Block a user