Implemented 'only_priority' filtering for V3 Lookups.

- Updated V3 lookup API and core timezone loader to support the 'only_priority' flag.
- Enabled high-priority timezone filtering in IDAA Recovery Meeting and Archive editors to streamline selection lists.
This commit is contained in:
Scott Idem
2026-02-20 17:17:09 -05:00
parent 52c9e765a0
commit 2dfc8a5034
6 changed files with 16 additions and 2 deletions

View File

@@ -47,6 +47,7 @@ export const get_ae_obj_li_for_lu = async function get_ae_obj_li_for_lu({
headers = {},
params_json = null,
params = {},
only_priority = false,
log_lvl = 1
}: {
api_cfg: any;
@@ -59,6 +60,7 @@ export const get_ae_obj_li_for_lu = async function get_ae_obj_li_for_lu({
headers?: any;
params_json?: any;
params?: key_val;
only_priority?: boolean;
log_lvl?: number;
}) {
if (log_lvl) {
@@ -77,6 +79,7 @@ export const get_ae_obj_li_for_lu = async function get_ae_obj_li_for_lu({
api_cfg,
lu_type: for_lu_type,
include_disabled: enabled === 'all',
only_priority: only_priority,
params,
headers: merged_headers,
log_lvl