fix(pres_mgmt): hidden files now visible in Manage Files without manual refresh
Background file loads for session, presentation, and presenter were using the default hidden='not_hidden', so hidden files never reached Dexie. The Manage Files liveQuery reads straight from Dexie, making hidden files completely invisible until the Refresh button was clicked (which already used hidden='all'). The Launcher is unaffected — it has always had a render-time guard that hides files with event_file_obj.hide unless show_content__hidden_files is enabled. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -181,6 +181,8 @@ async function _handle_nested_loads(
|
||||
for_obj_type: 'event_presentation',
|
||||
for_obj_id: current_presentation_id,
|
||||
enabled,
|
||||
// WHY: include hidden files so Manage Files UI can show/unhide them.
|
||||
hidden: 'all',
|
||||
limit: 25,
|
||||
try_cache,
|
||||
log_lvl
|
||||
|
||||
Reference in New Issue
Block a user